aboutsummaryrefslogtreecommitdiffstats
path: root/tethereal.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-11 06:53:31 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-11 06:53:31 +0000
commit7c4a6c5e21b4937346fbfbbf3df2a272ea0fb754 (patch)
tree67967eb04a25802babf6cf34ad8f92eb5567c39d /tethereal.c
parenta2ab3f8c5a40c724f53e5675c907e2392c724181 (diff)
Say "Tethereal", rather than "Ethereal", in messages from Tethereal.
svn path=/trunk/; revision=1617
Diffstat (limited to 'tethereal.c')
-rw-r--r--tethereal.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tethereal.c b/tethereal.c
index 73f06901bc..e7ddfaa5d4 100644
--- a/tethereal.c
+++ b/tethereal.c
@@ -1,6 +1,6 @@
/* tethereal.c
*
- * $Id: tethereal.c,v 1.16 2000/01/26 05:30:02 guy Exp $
+ * $Id: tethereal.c,v 1.17 2000/02/11 06:53:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -363,7 +363,7 @@ main(int argc, char *argv[])
#ifndef HAVE_LIBPCAP
if (capture_option_specified)
- fprintf(stderr, "This version of Ethereal was not built with support for capturing packets.\n");
+ fprintf(stderr, "This version of Tethereal was not built with support for capturing packets.\n");
#endif
if (arg_error)
print_usage();
@@ -507,7 +507,7 @@ capture(int packet_count, int out_file_type)
/* Set up to write to the capture file. */
if (ld.linktype == WTAP_ENCAP_UNKNOWN) {
strcpy(errmsg, "The network you're capturing from is of a type"
- " that Ethereal doesn't support.");
+ " that Tethereal doesn't support.");
goto error;
}
ld.pdh = wtap_dump_open(cf.save_file, out_file_type,
@@ -902,18 +902,18 @@ file_open_error_message(int err, int for_writing)
case WTAP_ERR_FILE_UNKNOWN_FORMAT:
case WTAP_ERR_UNSUPPORTED:
/* Seen only when opening a capture file for reading. */
- errmsg = "The file \"%s\" is not a capture file in a format Ethereal understands.";
+ errmsg = "The file \"%s\" is not a capture file in a format Tethereal understands.";
break;
case WTAP_ERR_UNSUPPORTED_FILE_TYPE:
/* Seen only when opening a capture file for writing. */
- errmsg = "Ethereal does not support writing capture files in that format.";
+ errmsg = "Tethereal does not support writing capture files in that format.";
break;
case WTAP_ERR_UNSUPPORTED_ENCAP:
case WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED:
/* Seen only when opening a capture file for writing. */
- errmsg = "Ethereal cannot save this capture in that format.";
+ errmsg = "Tethereal cannot save this capture in that format.";
break;
case WTAP_ERR_BAD_RECORD: