ovs-vsctl: Don't mask timeout argument
authorJustin Pettit <jpettit@nicira.com>
Fri, 15 Jan 2010 02:06:33 +0000 (18:06 -0800)
committerJustin Pettit <jpettit@nicira.com>
Fri, 15 Jan 2010 02:08:52 +0000 (18:08 -0800)
ovs-vsctl supports the "--timeout" option, which specifies the amount
of time that the operation is allowed to take before a SIGALRM is
raised.  The code that parsed options had a local "timeout" that masked
the global one that was supposed to be set.

utilities/ovs-vsctl.c

index 725988a5dc026662ae8e94ca42604948e38e1255..ab3005c25877574968d03147155b2fe57f59870c 100644 (file)
@@ -171,7 +171,6 @@ parse_options(int argc, char *argv[])
 
 
     for (;;) {
-        unsigned long int timeout;
         int c;
 
         c = getopt_long(argc, argv, "+v::hVt:", long_options, NULL);