diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-05-24 10:57:38 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-05-24 10:57:38 +0000 |
commit | 500c93ee8ed83d2185dcf0fe4c069fe61c8993f1 (patch) | |
tree | 0838062e8b51bebfafee6c03270d923a1960d1c6 /packet-smb-pipe.c | |
parent | e4040a6ebd175efcadebc0e983df4b6fe1ca0eda (diff) | |
download | wireshark-500c93ee8ed83d2185dcf0fe4c069fe61c8993f1.tar.gz wireshark-500c93ee8ed83d2185dcf0fe4c069fe61c8993f1.tar.bz2 wireshark-500c93ee8ed83d2185dcf0fe4c069fe61c8993f1.zip |
Move the value_string table for the share type values to
"packet-smb-common.c", and use it in "packet-dcerpc-srvsvc".
svn path=/trunk/; revision=5545
Diffstat (limited to 'packet-smb-pipe.c')
-rw-r--r-- | packet-smb-pipe.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/packet-smb-pipe.c b/packet-smb-pipe.c index 87e64d6f73..03af7c8728 100644 --- a/packet-smb-pipe.c +++ b/packet-smb-pipe.c @@ -8,7 +8,7 @@ XXX Fixme : shouldnt show [malformed frame] for long packets * significant rewrite to tvbuffify the dissector, Ronnie Sahlberg and * Guy Harris 2001 * - * $Id: packet-smb-pipe.c,v 1.76 2002/04/30 11:03:06 guy Exp $ + * $Id: packet-smb-pipe.c,v 1.77 2002/05/24 10:57:37 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -54,6 +54,7 @@ XXX Fixme : shouldnt show [malformed frame] for long packets #include "smb.h" #include "packet-smb-pipe.h" #include "packet-smb-browse.h" +#include "packet-smb-common.h" #include "packet-dcerpc.h" #include "reassemble.h" @@ -197,14 +198,6 @@ static const value_string status_vals[] = { {0, NULL} }; -static const value_string share_type_vals[] = { - {0, "Directory tree"}, - {1, "Printer queue"}, - {2, "Communications device"}, - {3, "IPC"}, - {0, NULL} -}; - static const value_string privilege_vals[] = { {0, "Guest"}, {1, "User"}, |