diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-14 23:04:04 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-14 23:04:04 +0000 |
commit | db319329411e4b1db7e19e8cc5eb518525d107ad (patch) | |
tree | dddb463b1b5567290a52f49b6534d5a6f4015fde /packet-pcnfsd.c | |
parent | 46a89d60f56997c8b859d67cd7f6b4442211f871 (diff) | |
download | wireshark-db319329411e4b1db7e19e8cc5eb518525d107ad.tar.gz wireshark-db319329411e4b1db7e19e8cc5eb518525d107ad.tar.bz2 wireshark-db319329411e4b1db7e19e8cc5eb518525d107ad.zip |
From Joerg Mayer:
Declares some variables static.
Creates a new include file packet-rsvp.h, and make use of it
(change some extern decls to #inlcude).
Move the file packet-pgm.h into packet-pgm.c as it is not used
by anything outside packet-pgm.c.
svn path=/trunk/; revision=5162
Diffstat (limited to 'packet-pcnfsd.c')
-rw-r--r-- | packet-pcnfsd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-pcnfsd.c b/packet-pcnfsd.c index 340e46f5b3..b8f61d5506 100644 --- a/packet-pcnfsd.c +++ b/packet-pcnfsd.c @@ -1,7 +1,7 @@ /* packet-pcnfsd.c * Routines for PCNFSD dissection * - * $Id: packet-pcnfsd.c,v 1.6 2002/04/03 13:24:12 girlich Exp $ + * $Id: packet-pcnfsd.c,v 1.7 2002/04/14 23:04:03 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -66,7 +66,7 @@ static gint ett_pcnfsd_auth_password = -1; static gint ett_pcnfsd_gids = -1; /* "NFS Illustrated 14.7.13 */ -void +static void pcnfsd_decode_obscure(char* data, int len) { for ( ; len>0 ; len--, data++) { @@ -76,7 +76,7 @@ pcnfsd_decode_obscure(char* data, int len) /* "NFS Illustrated" 14.7.13 */ -int +static int dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree) { @@ -161,7 +161,7 @@ dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, /* "NFS Illustrated" 14.7.13 */ -int +static int dissect_pcnfsd2_auth_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree) { |