From: Ben Pfaff Date: Mon, 22 Aug 2011 17:41:21 +0000 (-0700) Subject: Drop spurious 'H' cases from daemon option parsing switch statements. X-Git-Tag: v1.3.0~429 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=4f356133b56d7e907393118f41c17beac4260dd0;p=sliver-openvswitch.git Drop spurious 'H' cases from daemon option parsing switch statements. Help is 'h'. I don't see how 'H' can ever happen. --- diff --git a/vswitchd/ovs-brcompatd.c b/vswitchd/ovs-brcompatd.c index c1cc8175e..c88684f94 100644 --- a/vswitchd/ovs-brcompatd.c +++ b/vswitchd/ovs-brcompatd.c @@ -880,7 +880,6 @@ parse_options(int argc, char *argv[]) } switch (c) { - case 'H': case 'h': usage(); diff --git a/vswitchd/ovs-vswitchd.c b/vswitchd/ovs-vswitchd.c index b2b208214..875da6985 100644 --- a/vswitchd/ovs-vswitchd.c +++ b/vswitchd/ovs-vswitchd.c @@ -146,7 +146,6 @@ parse_options(int argc, char *argv[]) } switch (c) { - case 'H': case 'h': usage();