A "-b" argument must have a : in it, as it has to specify a criterion
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 1 Mar 2006 01:54:46 +0000 (01:54 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 1 Mar 2006 01:54:46 +0000 (01:54 +0000)
type and value, separated by a :.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17438 f5534014-38df-0310-8fa8-9805f1628bb7

capture_opts.c

index d8c2f859547b7f5ee6a40a871f13b7c59fad46f9..738ea16c4ed2bf94ea2473e1f8672d03e6317868 100644 (file)
@@ -190,7 +190,7 @@ get_ring_arguments(capture_options *capture_opts, const char *arg)
 
   colonp = strchr(arg, ':');
   if (colonp == NULL)
-    return TRUE;
+    return FALSE;
 
   p = colonp;
   *p++ = '\0';