diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-05-10 20:51:36 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-05-10 20:51:36 +0000 |
commit | defccf6b4cdcff5a910c8355e7330f1c70de0c39 (patch) | |
tree | 97463244013c3827f3e7a3df17c39eccffcd5a3c /packet-ncp.c | |
parent | a4c1b66753fb111dca0497bad099692a9bbee1a6 (diff) | |
download | wireshark-defccf6b4cdcff5a910c8355e7330f1c70de0c39.tar.gz wireshark-defccf6b4cdcff5a910c8355e7330f1c70de0c39.tar.bz2 wireshark-defccf6b4cdcff5a910c8355e7330f1c70de0c39.zip |
Fixed the number of parameters for the other super-IPX protocols so that
the table of dissect functions that IPX needs only needs to store pointers to
on type of function. Now all super-IPX protocols have an 'int max_data' argument.
svn path=/trunk/; revision=267
Diffstat (limited to 'packet-ncp.c')
-rw-r--r-- | packet-ncp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packet-ncp.c b/packet-ncp.c index 6b37250fdb..d22a081ba6 100644 --- a/packet-ncp.c +++ b/packet-ncp.c @@ -2,7 +2,7 @@ * Routines for NetWare Core Protocol * Gilbert Ramirez <gram@verdict.uthscsa.edu> * - * $Id: packet-ncp.c,v 1.10 1999/03/23 03:14:40 gram Exp $ + * $Id: packet-ncp.c,v 1.11 1999/05/10 20:51:36 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@unicom.net> @@ -315,7 +315,8 @@ svc_record_byte_count(svc_record *sr) } void -dissect_ncp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { +dissect_ncp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree, + int max_data) { proto_tree *ncp_tree = NULL; proto_item *ti; |