aboutsummaryrefslogtreecommitdiffstats
path: root/smb.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-04-30 11:03:08 +0000
committerGuy Harris <guy@alum.mit.edu>2002-04-30 11:03:08 +0000
commitda74615c7998037094df81255d4dd3d55e36ab47 (patch)
tree112fbe771384ddfd80f3678b8b70a3afc20eb793 /smb.h
parenta977e68fbc743f2c9669644dfae8d1567f3db6e0 (diff)
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 'smb.h')
-rw-r--r--smb.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/smb.h b/smb.h
index 36ff3a00f8..b1a44ef44a 100644
--- a/smb.h
+++ b/smb.h
@@ -2,7 +2,7 @@
* Defines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: smb.h,v 1.37 2002/04/24 06:18:51 tpot Exp $
+ * $Id: smb.h,v 1.38 2002/04/30 11:03:07 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -290,8 +290,8 @@ typedef struct smb_info {
/*
* Show file data for a read or write.
*/
-extern int dissect_file_data(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree, int offset, guint16 bc, guint16 datalen);
+extern int dissect_file_data(tvbuff_t *tvb, proto_tree *tree, int offset,
+ guint16 bc, guint16 datalen);
/*
* Add a FID to the protocol tree and the Info column.
@@ -302,8 +302,8 @@ extern void add_fid(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
/*
* Dissect named pipe state information.
*/
-extern int dissect_ipc_state(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *parent_tree, int offset, gboolean setstate);
+extern int dissect_ipc_state(tvbuff_t *tvb, proto_tree *parent_tree,
+ int offset, gboolean setstate);
extern gboolean smb_dcerpc_reassembly;
extern GHashTable *dcerpc_fragment_table;