aboutsummaryrefslogtreecommitdiffstats
path: root/capture_loop.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-12-29 01:08:20 +0000
committerGuy Harris <guy@alum.mit.edu>2004-12-29 01:08:20 +0000
commitf1deabed568a18c05afdca5f4898fc9e13f71e91 (patch)
tree00ab4774a5dc2b726c6d299e6dec687c3554e814 /capture_loop.c
parent85a6bea56ece48ef170158ab58bfcc19da5044d9 (diff)
Make the tone of the error messages a bit less formal, by using
contractions. (Safari does, at least when you're trying to open a file to which you don't have read access.) svn path=/trunk/; revision=12852
Diffstat (limited to 'capture_loop.c')
-rw-r--r--capture_loop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture_loop.c b/capture_loop.c
index 4670f4be3c..3f9989c408 100644
--- a/capture_loop.c
+++ b/capture_loop.c
@@ -735,7 +735,7 @@ static int capture_loop_init_filter(loop_data *ld, char *errmsg, int errmsg_len)
g_snprintf(errmsg, errmsg_len,
"%sInvalid capture filter: \"%s\"!%s\n"
"\n"
- "That string looks like a valid display filter; however, it is not a valid\n"
+ "That string looks like a valid display filter; however, it isn't a valid\n"
"capture filter (%s).\n"
"\n"
"Note that display filters and capture filters don't have the same syntax,\n"
@@ -749,7 +749,7 @@ static int capture_loop_init_filter(loop_data *ld, char *errmsg, int errmsg_len)
g_snprintf(errmsg, errmsg_len,
"%sInvalid capture filter: \"%s\"!%s\n"
"\n"
- "That string is not a valid capture filter (%s).\n"
+ "That string isn't a valid capture filter (%s).\n"
"See the help for a description of the capture filter syntax.",
simple_dialog_primary_start(), cfile.cfilter, simple_dialog_primary_end(),
pcap_geterr(ld->pcap_h));