diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-01-18 00:48:37 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-01-18 00:48:37 +0000 |
commit | 68115d6089f4ff066cb8b955096a5b1a40d58f58 (patch) | |
tree | 8d5fe5d3e27a250021364e2ad800b5da6aae6f49 /wiretap | |
parent | 6cdc5dfde2c5ab883ec36bb9b8eda01781cb68cd (diff) | |
download | wireshark-68115d6089f4ff066cb8b955096a5b1a40d58f58.tar.gz wireshark-68115d6089f4ff066cb8b955096a5b1a40d58f58.tar.bz2 wireshark-68115d6089f4ff066cb8b955096a5b1a40d58f58.zip |
It's EtherPeek, not Etherpeek, as WildPackets' Web site indicates.
svn path=/trunk/; revision=4562
Diffstat (limited to 'wiretap')
-rw-r--r-- | wiretap/etherpeek.c | 16 | ||||
-rw-r--r-- | wiretap/file.c | 6 |
2 files changed, 11 insertions, 11 deletions
diff --git a/wiretap/etherpeek.c b/wiretap/etherpeek.c index 658d22fb43..23b5b62f38 100644 --- a/wiretap/etherpeek.c +++ b/wiretap/etherpeek.c @@ -1,8 +1,8 @@ /* etherpeek.c - * Routines for opening etherpeek files + * Routines for opening EtherPeek (and TokenPeek?) files * Copyright (c) 2001, Daniel Thompson <d.thompson@gmx.net> * - * $Id: etherpeek.c,v 1.8 2002/01/18 00:25:50 guy Exp $ + * $Id: etherpeek.c,v 1.9 2002/01/18 00:48:37 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -38,7 +38,7 @@ /* CREDITS * * This file decoder could not have been writen without examining how - * tcptrace (http://www.tcptrace.org/) handles etherpeek files. + * tcptrace (http://www.tcptrace.org/) handles EtherPeek files. */ /* master header */ @@ -134,14 +134,14 @@ int etherpeek_open(wtap *wth, int *err) etherpeek_header_t ep_hdr; struct timeval start_time; - /* etherpeek files to not start with a magic value large enough - * to be unique hence we use the following algorithm to determine - * the type of an unknown file + /* EtherPeek files do not start with a magic value large enough + * to be unique; hence we use the following algorithm to determine + * the type of an unknown file: * - populate the master header and reject file if there is no match * - populate the secondary header and check that the reserved space * is zero; there is an obvious flaw here so this algorithm will - * probably need to be revisiting when improving etherpeek - * support + * probably need to be revisiting when improving EtherPeek + * support. */ g_assert(sizeof(ep_hdr.master) == ETHERPEEK_MASTER_HDR_SIZE); diff --git a/wiretap/file.c b/wiretap/file.c index de1a289f54..0c8d21381a 100644 --- a/wiretap/file.c +++ b/wiretap/file.c @@ -1,6 +1,6 @@ /* file.c * - * $Id: file.c,v 1.77 2001/12/04 22:28:19 guy Exp $ + * $Id: file.c,v 1.78 2002/01/18 00:48:37 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -374,11 +374,11 @@ static const struct file_type_info { NULL, NULL }, /* WTAP_FILE_ETHERPEEK_MAC_V56 */ - { "Etherpeek trace (Macintosh V5 & V6)", NULL, + { "EtherPeek trace (Macintosh V5 & V6)", NULL, NULL, NULL }, /* WTAP_FILE_ETHERPEEK_MAC_V7 */ - { "Etherpeek trace (Macintosh V7)", NULL, + { "EtherPeek trace (Macintosh V7)", NULL, NULL, NULL }, /* WTAP_FILE_VMS */ |