aboutsummaryrefslogtreecommitdiffstats
path: root/packet-quakeworld.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-quakeworld.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-quakeworld.c')
-rw-r--r--packet-quakeworld.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/packet-quakeworld.c b/packet-quakeworld.c
index cbfddb100f..860abd4023 100644
--- a/packet-quakeworld.c
+++ b/packet-quakeworld.c
@@ -4,7 +4,7 @@
* Uwe Girlich <uwe@planetquake.com>
* http://www.idsoftware.com/q1source/q1source.zip
*
- * $Id: packet-quakeworld.c,v 1.12 2002/04/02 06:29:48 girlich Exp $
+ * $Id: packet-quakeworld.c,v 1.13 2002/04/14 23:04:04 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -90,7 +90,7 @@ static char com_token[1024];
static int com_token_start;
static int com_token_length;
-char *
+static char *
COM_Parse (char *data)
{
int c;
@@ -160,14 +160,14 @@ static int cmd_argv_length[MAX_ARGS];
-int
+static int
Cmd_Argc(void)
{
return cmd_argc;
}
-char*
+static char*
Cmd_Argv(int arg)
{
if ( arg >= cmd_argc )
@@ -176,7 +176,7 @@ Cmd_Argv(int arg)
}
-int
+static int
Cmd_Argv_start(int arg)
{
if ( arg >= cmd_argc )
@@ -185,7 +185,7 @@ Cmd_Argv_start(int arg)
}
-int
+static int
Cmd_Argv_length(int arg)
{
if ( arg >= cmd_argc )
@@ -194,7 +194,7 @@ Cmd_Argv_length(int arg)
}
-void
+static void
Cmd_TokenizeString(char* text)
{
int i;
@@ -244,7 +244,7 @@ Cmd_TokenizeString(char* text)
}
-void
+static void
dissect_id_infostring(tvbuff_t *tvb, proto_tree* tree,
int offset, char* infostring,
gint ett_key_value, int hf_key_value, int hf_key, int hf_value)