aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-07-09 23:10:45 +0000
committerGuy Harris <guy@alum.mit.edu>2012-07-09 23:10:45 +0000
commit65b2c9a80ee69dd2470f8d5c7dbd1a8a8cf4c3bb (patch)
treef3c224e40ddce66c79abd6256eded192a1f7e6ec /wiretap
parent9fcbc2377fa09fb6c4837780faac307b467486ae (diff)
Fix some comments.
svn path=/trunk/; revision=43631
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/peektagged.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/wiretap/peektagged.c b/wiretap/peektagged.c
index 4ed6b84d64..643c26cfaa 100644
--- a/wiretap/peektagged.c
+++ b/wiretap/peektagged.c
@@ -219,18 +219,18 @@ int peektagged_open(wtap *wth, int *err, gchar **err_info)
*/
ret = wtap_file_read_pattern (wth, "<FileVersion>", err, err_info);
if (ret != 1) {
- /* 0 means EOF, which means "not a valid AiroPeek V9 file";
+ /* 0 means EOF, which means "not a valid Peek tagged file";
-1 means error, and "err" has been set. */
return ret;
}
ret = wtap_file_read_number (wth, &fileVersion, err, err_info);
if (ret != 1) {
- /* 0 means EOF, which means "not a valid AiroPeek V9 file";
+ /* 0 means EOF, which means "not a valid Peek tagged file";
-1 means error, and "err" has been set. */
return ret;
}
- /* If we got this far, we assume it's an AiroPeek V9 file. */
+ /* If we got this far, we assume it's a Peek tagged file. */
if (fileVersion != 9) {
/* We only support version 9. */
*err = WTAP_ERR_UNSUPPORTED;
@@ -305,7 +305,7 @@ int peektagged_open(wtap *wth, int *err, gchar **err_info)
return 0;
/*
- * This is an EtherPeek or AiroPeek V9 file.
+ * This is an Peek tagged file.
*/
file_encap = peektagged_encap[mediaSubType];