ovs-ofctl: Fix return value of str_to_port_no().
authorBen Pfaff <blp@nicira.com>
Tue, 16 Nov 2010 18:25:22 +0000 (10:25 -0800)
committerBen Pfaff <blp@nicira.com>
Wed, 17 Nov 2010 17:21:09 +0000 (09:21 -0800)
The index into the array of ports returned in the OFPT_FEATURES_REPLY
message is not necessarily the same as the port number, so this fixes a
real bug.

utilities/ovs-ofctl.c

index 1901e24..e46e1a2 100644 (file)
@@ -431,7 +431,7 @@ str_to_port_no(const char *vconn_name, const char *str)
     ofpbuf_delete(reply);
     vconn_close(vconn);
 
-    return port_idx;
+    return ntohs(osf->ports[port_idx].port_no);
 }
 
 static void