diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-02-09 19:09:02 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-02-09 19:09:02 +0000 |
commit | ae1f986db1bc9e03e50dbf0a14985fb509e7a44f (patch) | |
tree | e70d13e4c46130903346d8598d1e30194bc798c3 /packet-udp.c | |
parent | 74f3d6dbf87d64fb6ec83996e7d4dcf2b7498deb (diff) | |
download | wireshark-ae1f986db1bc9e03e50dbf0a14985fb509e7a44f.tar.gz wireshark-ae1f986db1bc9e03e50dbf0a14985fb509e7a44f.tar.bz2 wireshark-ae1f986db1bc9e03e50dbf0a14985fb509e7a44f.zip |
The time protocol is a simple request-response protocol, and doesn't end
up involving two ports neither of which is the official port; remove the
comment saying a dynamic call is added, as the code wasn't adding such a
call.
svn path=/trunk/; revision=1611
Diffstat (limited to 'packet-udp.c')
-rw-r--r-- | packet-udp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packet-udp.c b/packet-udp.c index 2585904482..d1fcea283b 100644 --- a/packet-udp.c +++ b/packet-udp.c @@ -1,7 +1,7 @@ /* packet-udp.c * Routines for UDP packet disassembly * - * $Id: packet-udp.c,v 1.48 2000/02/09 17:15:47 gram Exp $ + * $Id: packet-udp.c,v 1.49 2000/02/09 19:09:02 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -305,7 +305,6 @@ dissect_udp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { udp_hash_add(MAX(uh_sport, uh_dport), dissect_tftp); /* Add to table */ dissect_tftp(pd, offset, fd, tree); } else if (PORT_IS(UDP_PORT_TIME)) { - /* This is the first point of call, but it adds a dynamic call */ dissect_time(pd, offset, fd, tree); } else if (PORT_IS(UDP_PORT_RADIUS) || PORT_IS(UDP_PORT_RADACCT) || |