aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-03 19:54:08 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-03 19:54:08 +0000
commitb01fdbc6159dc3d7564fde95005ba76df156ff76 (patch)
treef974899fd0183dbf6457bf75f0fffa08b474e77f /capture.c
parent5d5b99e8b93dcd7b82ddcd32dfc0aa44b704001b (diff)
ups, moved previously missing %s to the right place
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9970 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/capture.c b/capture.c
index cdd54857e0..506d415e3f 100644
--- a/capture.c
+++ b/capture.c
@@ -1,7 +1,7 @@
/* capture.c
* Routines for packet capture windows
*
- * $Id: capture.c,v 1.234 2004/02/03 18:39:52 guy Exp $
+ * $Id: capture.c,v 1.235 2004/02/03 19:54:08 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1536,9 +1536,9 @@ capture(gboolean *stats_known, struct pcap_stat *stats)
/* filter string invalid, did the user tried a display filter? */
if (dfilter_compile(cfile.cfilter, &rfcode) && rfcode != NULL) {
snprintf(errmsg, sizeof errmsg,
- "%sInvalid capture filter: \"%s\"!%s%s\n"
+ "%sInvalid capture filter: \"%s\"!%s\n"
"\n"
- "That string looks like a valid display filter.\n"
+ "That string looks like a valid display filter (%s).\n"
"\n"
"Note that display filters and capture filters don't have the same syntax,\n"
"so you can't use most display filter expressions as capture filters.\n"