diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-03-19 09:18:42 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-03-19 09:18:42 +0000 |
commit | 43ad415d559b36204c5f81b623073b4e8e61781f (patch) | |
tree | e25802ac7258bb6e786a0414bd014dcebd557980 /packet-dns.c | |
parent | dec54cc52ad3b5813fa1e8e0cc2044fd622d0c55 (diff) | |
download | wireshark-43ad415d559b36204c5f81b623073b4e8e61781f.tar.gz wireshark-43ad415d559b36204c5f81b623073b4e8e61781f.tar.bz2 wireshark-43ad415d559b36204c5f81b623073b4e8e61781f.zip |
Fix some comments.
svn path=/trunk/; revision=4979
Diffstat (limited to 'packet-dns.c')
-rw-r--r-- | packet-dns.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-dns.c b/packet-dns.c index 6d0af374ae..f95e0e553c 100644 --- a/packet-dns.c +++ b/packet-dns.c @@ -1,7 +1,7 @@ /* packet-dns.c * Routines for DNS packet disassembly * - * $Id: packet-dns.c,v 1.83 2002/02/22 21:52:09 guy Exp $ + * $Id: packet-dns.c,v 1.84 2002/03/19 09:18:42 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -2019,7 +2019,7 @@ dissect_dns_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) * ReportedBoundsError exception. We really want * a tvbuff where the length is "length", the reported * length is "plen + 2", and the "if the snapshot length - * were infinite" length were the minimum of the + * were infinite" length is the minimum of the * reported length of the tvbuff handed to us and "plen+2", * with a new type of exception thrown if the offset is * within the reported length but beyond that third length, @@ -2037,8 +2037,8 @@ dissect_dns_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) * Catch the ReportedBoundsError exception; if this * particular message happens to get a ReportedBoundsError * exception, that doesn't mean that we should stop - * dissecting COPS messages within this frame or chunk - * of reassembled data. + * dissecting DNS-over-TCP messages within this frame or + * chunk of reassembled data. * * If it gets a BoundsError, we can stop, as there's nothing * more to see, so we just re-throw it. |