aboutsummaryrefslogtreecommitdiffstats
path: root/mergecap.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 /mergecap.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 'mergecap.c')
-rw-r--r--mergecap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mergecap.c b/mergecap.c
index 54bffc5539..83777a7ebe 100644
--- a/mergecap.c
+++ b/mergecap.c
@@ -55,7 +55,7 @@ get_natural_int(const char *string, const char *name)
number = strtol(string, &p, 10);
if (p == string || *p != '\0') {
- fprintf(stderr, "mergecap: The specified %s \"%s\" is not a decimal number\n",
+ fprintf(stderr, "mergecap: The specified %s \"%s\" isn't a decimal number\n",
name, string);
exit(1);
}
@@ -162,7 +162,7 @@ main(int argc, char *argv[])
case 'T':
frame_type = wtap_short_string_to_encap(optarg);
if (frame_type < 0) {
- fprintf(stderr, "mergecap: \"%s\" is not a valid encapsulation type\n",
+ fprintf(stderr, "mergecap: \"%s\" isn't a valid encapsulation type\n",
optarg);
exit(1);
}
@@ -171,7 +171,7 @@ main(int argc, char *argv[])
case 'F':
file_type = wtap_short_string_to_file_type(optarg);
if (file_type < 0) {
- fprintf(stderr, "mergecap: \"%s\" is not a valid capture file type\n",
+ fprintf(stderr, "mergecap: \"%s\" isn't a valid capture file type\n",
optarg);
exit(1);
}