Drop spurious 'H' cases from daemon option parsing switch statements.
authorBen Pfaff <blp@nicira.com>
Mon, 22 Aug 2011 17:41:21 +0000 (10:41 -0700)
committerBen Pfaff <blp@nicira.com>
Mon, 22 Aug 2011 17:41:35 +0000 (10:41 -0700)
Help is 'h'.  I don't see how 'H' can ever happen.

vswitchd/ovs-brcompatd.c
vswitchd/ovs-vswitchd.c

index c1cc8175e7dcc825aebaef0e7bee0d5c4738ab36..c88684f94c3fb79ebbda7ed9055d0e04df8e927f 100644 (file)
@@ -880,7 +880,6 @@ parse_options(int argc, char *argv[])
         }
 
         switch (c) {
-        case 'H':
         case 'h':
             usage();
 
index b2b208214f9793cf38d64d84371b5cce5897abfb..875da6985fd6cfdd903424e532db5ba5e70bbff3 100644 (file)
@@ -146,7 +146,6 @@ parse_options(int argc, char *argv[])
         }
 
         switch (c) {
-        case 'H':
         case 'h':
             usage();