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-cops.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-cops.c')
-rw-r--r-- | packet-cops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-cops.c b/packet-cops.c index a664e9818f..d4a9563401 100644 --- a/packet-cops.c +++ b/packet-cops.c @@ -4,7 +4,7 @@ * * Copyright 2000, Heikki Vatiainen <hessu@cs.tut.fi> * - * $Id: packet-cops.c,v 1.30 2002/05/05 00:16:32 guy Exp $ + * $Id: packet-cops.c,v 1.31 2002/05/10 23:20:37 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -868,7 +868,7 @@ static int dissect_cops_object_data(tvbuff_t *tvb, guint32 offset, proto_tree *t /*convert hex to binary string (1010....)*/ -gchar* xtobstr(guint8 *hex, guint len) { +static gchar* xtobstr(guint8 *hex, guint len) { guint i=0,j=0,k=0, bit=0; gchar *binstr=NULL; |