aboutsummaryrefslogtreecommitdiffstats
path: root/mergecap.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-12-29 01:08:20 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-12-29 01:08:20 +0000
commit63495d717fa970029e9c71a8c0d6014ea1182352 (patch)
tree00ab4774a5dc2b726c6d299e6dec687c3554e814 /mergecap.c
parent7a685d5c3c3f53dd7e395f42946b8a3dc06f65dc (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.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12852 f5534014-38df-0310-8fa8-9805f1628bb7
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);
}