aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-03-01 01:54:46 +0000
committerGuy Harris <guy@alum.mit.edu>2006-03-01 01:54:46 +0000
commita8f261dba7fb0c9cacae1d0bf82cf5760da9a899 (patch)
treeb86a71eae5772af9fd9754a572b99e851bedcb1d /capture_opts.c
parent8ac0325b2b6ccac39ee1304b31fd4128b9b2d748 (diff)
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
Diffstat (limited to 'capture_opts.c')
-rw-r--r--capture_opts.c2
1 files changed, 1 insertions, 1 deletions
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';