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 c1cc817..c88684f 100644 (file)
@@ -880,7 +880,6 @@ parse_options(int argc, char *argv[])
         }
 
         switch (c) {
-        case 'H':
         case 'h':
             usage();
 
index b2b2082..875da69 100644 (file)
@@ -146,7 +146,6 @@ parse_options(int argc, char *argv[])
         }
 
         switch (c) {
-        case 'H':
         case 'h':
             usage();