aboutsummaryrefslogtreecommitdiffstats
path: root/packet-osi-options.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-14 23:04:04 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-14 23:04:04 +0000
commitdb319329411e4b1db7e19e8cc5eb518525d107ad (patch)
treedddb463b1b5567290a52f49b6534d5a6f4015fde /packet-osi-options.c
parent46a89d60f56997c8b859d67cd7f6b4442211f871 (diff)
From Joerg Mayer:
Declares some variables static. Creates a new include file packet-rsvp.h, and make use of it (change some extern decls to #inlcude). Move the file packet-pgm.h into packet-pgm.c as it is not used by anything outside packet-pgm.c. svn path=/trunk/; revision=5162
Diffstat (limited to 'packet-osi-options.c')
-rw-r--r--packet-osi-options.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-osi-options.c b/packet-osi-options.c
index 63d60b3371..516703ec61 100644
--- a/packet-osi-options.c
+++ b/packet-osi-options.c
@@ -5,7 +5,7 @@
* ISO 10589 ISIS (Intradomain Routing Information Exchange Protocol)
* ISO 9542 ESIS (End System To Intermediate System Routing Exchange Protocol)
*
- * $Id: packet-osi-options.c,v 1.10 2002/04/07 21:54:48 guy Exp $
+ * $Id: packet-osi-options.c,v 1.11 2002/04/14 23:04:03 guy Exp $
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
* Ethereal - Network traffic analyzer
@@ -165,7 +165,7 @@ static const value_string osi_opt_rfd_reassembly[] = {
{ 0, NULL} };
-void
+static void
dissect_option_qos( const u_char type, const u_char sub_type, int offset,
u_char len, tvbuff_t *tvb, proto_tree *tree ) {
@@ -216,7 +216,7 @@ dissect_option_qos( const u_char type, const u_char sub_type, int offset,
}
}
-void
+static void
dissect_option_route( u_char parm_type, u_char offset, u_char parm_len,
tvbuff_t *tvb, proto_tree *tree ) {
@@ -277,7 +277,7 @@ dissect_option_route( u_char parm_type, u_char offset, u_char parm_len,
-void
+static void
dissect_option_rfd( const u_char error, const u_char field, u_char offset,
u_char len, tvbuff_t *tvb, proto_tree *tree ) {
u_char error_class = 0;