aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-02-03 19:54:08 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-02-03 19:54:08 +0000
commit41cd2385c36ac7aa8a12c177ee20bbf813a23907 (patch)
treef974899fd0183dbf6457bf75f0fffa08b474e77f
parenta7bb0c7e99a00ae9666936028e5e743d04c29db2 (diff)
ups, moved previously missing %s to the right place
svn path=/trunk/; revision=9970
-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"