diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-11-17 02:17:29 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-11-17 02:17:29 +0000 |
commit | b68f2dde89f605284460e13dae152878bfd5c55b (patch) | |
tree | 0cccaf22256fef82755255a68d752fea5e276c89 /packet-ipx.c | |
parent | d04da40cba2d747a184cdda1565ffa3ebec77cae (diff) | |
download | wireshark-b68f2dde89f605284460e13dae152878bfd5c55b.tar.gz wireshark-b68f2dde89f605284460e13dae152878bfd5c55b.tar.bz2 wireshark-b68f2dde89f605284460e13dae152878bfd5c55b.zip |
Heikki Vatiainen's SAP (Session Announcement Protocol) dissector.
Rename the dissector for the Netware SAP protocol to "dissect_ipxsap()",
so as to keep its name from colliding with that of the dissector for the
Session Announcement Protocol.
svn path=/trunk/; revision=1046
Diffstat (limited to 'packet-ipx.c')
-rw-r--r-- | packet-ipx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-ipx.c b/packet-ipx.c index 2be71ad3d9..12a3ff5bc0 100644 --- a/packet-ipx.c +++ b/packet-ipx.c @@ -2,7 +2,7 @@ * Routines for NetWare's IPX * Gilbert Ramirez <gram@verdict.uthscsa.edu> * - * $Id: packet-ipx.c,v 1.32 1999/11/16 11:42:36 guy Exp $ + * $Id: packet-ipx.c,v 1.33 1999/11/17 02:17:06 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@unicom.net> @@ -94,7 +94,7 @@ static void dissect_ipxrip(const u_char *pd, int offset, frame_data *fd, proto_tree *tree); static void -dissect_sap(const u_char *pd, int offset, frame_data *fd, proto_tree *tree); +dissect_ipxsap(const u_char *pd, int offset, frame_data *fd, proto_tree *tree); typedef void (dissect_func_t)(const u_char *, int, frame_data *, proto_tree *); @@ -139,7 +139,7 @@ struct server_info { static struct port_info ports[] = { { IPX_SOCKET_NCP, dissect_ncp, "NCP" }, - { IPX_SOCKET_SAP, dissect_sap, + { IPX_SOCKET_SAP, dissect_ipxsap, "SAP" }, { IPX_SOCKET_IPXRIP, dissect_ipxrip, "RIP" }, @@ -628,7 +628,7 @@ server_type(guint16 type) } static void -dissect_sap(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { +dissect_ipxsap(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { proto_tree *sap_tree, *s_tree; proto_item *ti; |