From a8f261dba7fb0c9cacae1d0bf82cf5760da9a899 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 1 Mar 2006 01:54:46 +0000 Subject: [PATCH] A "-b" argument must have a : in it, as it has to specify a criterion type and value, separated by a :. svn path=/trunk/; revision=17438 --- capture_opts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capture_opts.c b/capture_opts.c index d8c2f85954..738ea16c4e 100644 --- a/capture_opts.c +++ b/capture_opts.c @@ -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';