vlogconf: Don't abort when given unknown option.
[sliver-openvswitch.git] / utilities / vlogconf.c
index 46a121b..006344b 100644 (file)
@@ -208,6 +208,9 @@ int main(int argc, char *argv[])
             usage(argv[0], EXIT_SUCCESS);
             break;
 
+        case '?':
+            exit(EXIT_FAILURE);
+
         default:
             NOT_REACHED();
         }