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-hclnfsd.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-hclnfsd.c')
-rw-r--r-- | packet-hclnfsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-hclnfsd.c b/packet-hclnfsd.c index 9c00961ff9..2ce0ea17dd 100644 --- a/packet-hclnfsd.c +++ b/packet-hclnfsd.c @@ -2,7 +2,7 @@ * Routines for hclnfsd (Hummingbird NFS Daemon) dissection * Copyright 2001, Mike Frisch <frisch@hummingbird.com> * - * $Id: packet-hclnfsd.c,v 1.13 2002/04/25 21:29:13 guy Exp $ + * $Id: packet-hclnfsd.c,v 1.14 2002/05/10 23:20:38 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -150,7 +150,7 @@ static const value_string names_request_type[] = { { 0, NULL } }; -void +static void hclnfsd_decode_obscure(char *ident, int ident_len) { int j, x, y; |