aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-04-17 02:47:43 +0000
committerGuy Harris <guy@alum.mit.edu>2000-04-17 02:47:43 +0000
commitb84de4724f63515d0f65de44a30aee0b2cc2015f (patch)
treeb62de264a102b6ced3af47a09e7adf6f4f09ff51
parent2c5e10296687a78606b9549421c7738442d50e4a (diff)
Tweak a comment.
svn path=/trunk/; revision=1875
-rw-r--r--packet-udp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-udp.c b/packet-udp.c
index 3aec65a8aa..3eb1a7bf6d 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.66 2000/04/17 02:39:55 guy Exp $
+ * $Id: packet-udp.c,v 1.67 2000/04/17 02:47:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -127,7 +127,7 @@ decode_udp_ports( const u_char *pd, int offset, frame_data *fd,
dissector_try_port(udp_dissector_table, uh_dport, pd, offset, fd, tree))
return;
- /* XXX - we should do all of this through the table of ports. */
+ /* XXX - we should do these with the subdissector table as well. */
#define PORT_IS(port) (uh_sport == port || uh_dport == port)
if (PORT_IS(UDP_PORT_NCP))
dissect_ncp(pd, offset, fd, tree); /* XXX -- need to handle nw_server_address */