diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-04-08 20:30:56 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-04-08 20:30:56 +0000 |
commit | 5c10ad55a8279e6288863553d8572cadbb738a22 (patch) | |
tree | f857c4d8ef07eb660634c128fc5a8f5e8fff8dea /packet-smb.c | |
parent | e937593bb85bdefaf14368e693754192765818f0 (diff) | |
download | wireshark-5c10ad55a8279e6288863553d8572cadbb738a22.tar.gz wireshark-5c10ad55a8279e6288863553d8572cadbb738a22.tar.bz2 wireshark-5c10ad55a8279e6288863553d8572cadbb738a22.zip |
More static-ization.
svn path=/trunk/; revision=5131
Diffstat (limited to 'packet-smb.c')
-rw-r--r-- | packet-smb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb.c b/packet-smb.c index 16e2636c4b..e0b345923f 100644 --- a/packet-smb.c +++ b/packet-smb.c @@ -3,7 +3,7 @@ * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com> * 2001 Rewrite by Ronnie Sahlberg and Guy Harris * - * $Id: packet-smb.c,v 1.239 2002/03/29 21:55:05 sahlberg Exp $ + * $Id: packet-smb.c,v 1.240 2002/04/08 20:30:53 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -12056,7 +12056,7 @@ typedef struct _smb_function { int (*response)(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, proto_tree *smb_tree); } smb_function; -smb_function smb_dissector[256] = { +static smb_function smb_dissector[256] = { /* 0x00 Create Dir*/ {dissect_old_dir_request, dissect_empty}, /* 0x01 Delete Dir*/ {dissect_old_dir_request, dissect_empty}, /* 0x02 Open File*/ {dissect_open_file_request, dissect_open_file_response}, |