diff options
author | Uwe Girlich <Uwe.Girlich@philosys.de> | 2001-07-22 19:04:20 +0000 |
---|---|---|
committer | Uwe Girlich <Uwe.Girlich@philosys.de> | 2001-07-22 19:04:20 +0000 |
commit | 0d8ef7dd3ee9cb90dd05b0022cd76ac3d40a072c (patch) | |
tree | 294440e0583dc33ec151b2dea2c52cbfbaa60990 /packet-quake3.c | |
parent | 93e99b0ec97d2668e07d2d7d22118d36960fca18 (diff) | |
download | wireshark-0d8ef7dd3ee9cb90dd05b0022cd76ac3d40a072c.tar.gz wireshark-0d8ef7dd3ee9cb90dd05b0022cd76ac3d40a072c.tar.bz2 wireshark-0d8ef7dd3ee9cb90dd05b0022cd76ac3d40a072c.zip |
misleading comment changed on the byte ordering
svn path=/trunk/; revision=3769
Diffstat (limited to 'packet-quake3.c')
-rw-r--r-- | packet-quake3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-quake3.c b/packet-quake3.c index c7590eab29..70eba1c82f 100644 --- a/packet-quake3.c +++ b/packet-quake3.c @@ -3,7 +3,7 @@ * * Uwe Girlich <uwe@planetquake.com> * - * $Id: packet-quake3.c,v 1.1 2001/07/22 18:54:16 girlich Exp $ + * $Id: packet-quake3.c,v 1.2 2001/07/22 19:04:20 girlich Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -270,7 +270,7 @@ dissect_quake3_ConnectionlessPacket(tvbuff_t *tvb, packet_info *pinfo, /* now we decode all the rest */ base = offset + 18; - /* '/' IP.IP.IP.IP PORTLO PORTHI */ + /* '/', ip-address in network order, port in network order */ while (tvb_length_remaining(tvb, base) >= 7) { guint32 ip_addr; guint16 udp_port; |