aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-01 01:54:46 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-01 01:54:46 +0000
commit12a0ee8f966ef0cb5af9f0167f487f72f0ba1e20 (patch)
treeb86a71eae5772af9fd9754a572b99e851bedcb1d /capture_opts.c
parentb303599e702e34032d9932788a8b11bc58b1a3aa (diff)
A "-b" argument must have a : in it, as it has to specify a criterion
type and value, separated by a :. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17438 f5534014-38df-0310-8fa8-9805f1628bb7
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';