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
This commit is contained in:
Guy Harris 2001-01-03 08:26:40 +00:00
parent 6d7aa5a618
commit bf94988818
1 changed files with 3 additions and 3 deletions

View File

@ -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;