aboutsummaryrefslogtreecommitdiffstats
path: root/packet-zebra.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-01-03 08:26:40 +0000
committerGuy Harris <guy@alum.mit.edu>2001-01-03 08:26:40 +0000
commitbf94988818747c2ba5968b5789f4bf64a8fc373c (patch)
tree2957ac43485dc5ca19a8d6b9a0fcf64ff66c28a1 /packet-zebra.c
parent6d7aa5a618e2fbca948394df5697ae32236ffad1 (diff)
Make the Zebra dissector, and a routine it uses, static, as they're not
called directly from outside "packet-zebra.c". svn path=/trunk/; revision=2814
Diffstat (limited to 'packet-zebra.c')
-rw-r--r--packet-zebra.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-zebra.c b/packet-zebra.c
index 9d887746a1..78df51ebc2 100644
--- a/packet-zebra.c
+++ b/packet-zebra.c
@@ -3,7 +3,7 @@
*
* Jochen Friedrich <jochen@scram.de>
*
- * $Id: packet-zebra.c,v 1.6 2001/01/03 06:55:34 guy Exp $
+ * $Id: packet-zebra.c,v 1.7 2001/01/03 08:26:40 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -191,7 +191,7 @@ static const value_string safis[] = {
#define PSIZE(a) (((a) + 7) / (8))
-void
+static void
dissect_zebra_request(proto_tree *tree, gboolean request, tvbuff_t *tvb,
int offset, guint16 len, guint8 command)
{
@@ -468,7 +468,7 @@ dissect_zebra_request(proto_tree *tree, gboolean request, tvbuff_t *tvb,
}
}
-void
+static void
dissect_zebra(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
proto_item *ti;