diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-04-30 11:03:08 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-04-30 11:03:08 +0000 |
commit | da74615c7998037094df81255d4dd3d55e36ab47 (patch) | |
tree | 112fbe771384ddfd80f3678b8b70a3afc20eb793 /packet-smb-common.h | |
parent | a977e68fbc743f2c9669644dfae8d1567f3db6e0 (diff) | |
download | wireshark-da74615c7998037094df81255d4dd3d55e36ab47.tar.gz wireshark-da74615c7998037094df81255d4dd3d55e36ab47.tar.bz2 wireshark-da74615c7998037094df81255d4dd3d55e36ab47.zip |
Get rid of some unused arguments, and mark some others as unused.
Remove the declaration of "dissect_nt_sid()" from
"packet-dcerpc-samr.c"; get it by including "packet-smb-common.h",
instead.
svn path=/trunk/; revision=5313
Diffstat (limited to 'packet-smb-common.h')
-rw-r--r-- | packet-smb-common.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/packet-smb-common.h b/packet-smb-common.h index 94719e3f96..b545b0f9d6 100644 --- a/packet-smb-common.h +++ b/packet-smb-common.h @@ -2,7 +2,7 @@ * Routines for SMB packet dissection * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com> * - * $Id: packet-smb-common.h,v 1.9 2002/02/21 18:39:49 tpot Exp $ + * $Id: packet-smb-common.h,v 1.10 2002/04/30 11:03:08 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -53,14 +53,13 @@ int dissect_smb_unknown(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset); -int display_unicode_string(tvbuff_t *tvb, packet_info *pinfo, - proto_tree *tree, int offset, int hf_index); +int display_unicode_string(tvbuff_t *tvb, proto_tree *tree, int offset, int hf_index); -int display_ms_string(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int hf_index); +int display_ms_string(tvbuff_t *tvb, proto_tree *tree, int offset, int hf_index); -int dissect_smb_64bit_time(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int hf_date); +int dissect_smb_64bit_time(tvbuff_t *tvb, proto_tree *tree, int offset, int hf_date); -int dissect_nt_sid(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_tree *parent_tree, char *name); +int dissect_nt_sid(tvbuff_t *tvb, int offset, proto_tree *parent_tree, char *name); int dissect_nt_sec_desc(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_tree *parent_tree, int len); |