summaryrefslogtreecommitdiff
path: root/utilities/ovs-dpctl.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-03-04 12:46:37 -0800
committerBen Pfaff <blp@nicira.com>2011-03-04 12:49:41 -0800
commit25608d9720000ba2f4b4a881ca2a8cf519404f96 (patch)
treeead4b762aa9b65c74fc28a3c664f2695e694648a /utilities/ovs-dpctl.c
parent55eccb868b8f1da858a9f724335b5bb059276497 (diff)
downloadopenvswitch-25608d9720000ba2f4b4a881ca2a8cf519404f96.tar.gz
ovs-dpctl: Support more than one option for "add-if" command.
This "while" loop in do_add_if() is supposed to split up everything after the interface name with ',' as the delimiter, but it didn't do that correctly. Also corrects a typo in the manpage pointed out by Justin Pettit.
Diffstat (limited to 'utilities/ovs-dpctl.c')
-rw-r--r--utilities/ovs-dpctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utilities/ovs-dpctl.c b/utilities/ovs-dpctl.c
index f79909a1f..658f6ba10 100644
--- a/utilities/ovs-dpctl.c
+++ b/utilities/ovs-dpctl.c
@@ -241,7 +241,7 @@ do_add_if(int argc OVS_UNUSED, char *argv[])
}
shash_init(&args);
- while ((option = strtok_r(NULL, "", &save_ptr)) != NULL) {
+ while ((option = strtok_r(NULL, ",", &save_ptr)) != NULL) {
char *save_ptr_2 = NULL;
char *key, *value;