diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-05-10 23:20:38 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-05-10 23:20:38 +0000 |
commit | ae88c45ef0e996600f277bb74261f42ced995b6c (patch) | |
tree | f18ae465f401e1d4668a4ffce5f6c6528af6f89f /packet-afs.c | |
parent | 42c395b0e250aa833072dde090d22dd0e97f2564 (diff) | |
download | wireshark-ae88c45ef0e996600f277bb74261f42ced995b6c.tar.gz wireshark-ae88c45ef0e996600f277bb74261f42ced995b6c.tar.bz2 wireshark-ae88c45ef0e996600f277bb74261f42ced995b6c.zip |
From Joerg Mayer: make a pile of stuff not used outside one source file
static, and add a new "packet-data.h" to declare "proto_data".
Display escape sequences in octal in the IAPP dissector, as is now done
in the RADIUS dissector.
svn path=/trunk/; revision=5441
Diffstat (limited to 'packet-afs.c')
-rw-r--r-- | packet-afs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-afs.c b/packet-afs.c index 96bb46668a..abc4280c73 100644 --- a/packet-afs.c +++ b/packet-afs.c @@ -8,7 +8,7 @@ * Portions based on information/specs retrieved from the OpenAFS sources at * www.openafs.org, Copyright IBM. * - * $Id: packet-afs.c,v 1.45 2002/05/06 01:25:45 guy Exp $ + * $Id: packet-afs.c,v 1.46 2002/05/10 23:20:37 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -62,7 +62,7 @@ (opcode >= VOTE_LOW && opcode <= VOTE_HIGH) || \ (opcode >= DISK_LOW && opcode <= DISK_HIGH)) -int afs_packet_init_count = 100; +static int afs_packet_init_count = 100; struct afs_request_key { guint32 conversation, callnumber; @@ -73,9 +73,9 @@ struct afs_request_val { guint32 opcode; }; -GHashTable *afs_request_hash = NULL; -GMemChunk *afs_request_keys = NULL; -GMemChunk *afs_request_vals = NULL; +static GHashTable *afs_request_hash = NULL; +static GMemChunk *afs_request_keys = NULL; +static GMemChunk *afs_request_vals = NULL; |