aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dsi.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-05-01 07:07:09 +0000
committerGuy Harris <guy@alum.mit.edu>2002-05-01 07:07:09 +0000
commit87b66571c54e3709eab8ee5283fd9d4105e918aa (patch)
treea05bd048bdf28ea7e593612a2ea31c627b774408 /packet-dsi.c
parent09f812b7c2907a99e49fb1c49eb2dbd5cfd87653 (diff)
Get rid of an unused argument.
svn path=/trunk/; revision=5326
Diffstat (limited to 'packet-dsi.c')
-rw-r--r--packet-dsi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-dsi.c b/packet-dsi.c
index 7aec357637..aebc2afb62 100644
--- a/packet-dsi.c
+++ b/packet-dsi.c
@@ -2,7 +2,7 @@
* Routines for dsi packet dissection
* Copyright 2001, Randy McEoin <rmceoin@pe.com>
*
- * $Id: packet-dsi.c,v 1.16 2002/04/30 22:05:33 guy Exp $
+ * $Id: packet-dsi.c,v 1.17 2002/05/01 07:07:09 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -159,7 +159,7 @@ static const value_string func_vals[] = {
from netatalk/etc/afpd/status.c
*/
static gint
-dissect_dsi_reply_get_status(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint offset)
+dissect_dsi_reply_get_status(tvbuff_t *tvb, proto_tree *tree, gint offset)
{
proto_tree *sub_tree;
proto_item *ti;
@@ -344,7 +344,7 @@ dissect_dsi_packet(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
switch (dsi_command) {
case DSIFUNC_STAT:
if (tree && (dsi_flags == DSIFL_REPLY)) {
- dissect_dsi_reply_get_status(tvb, pinfo, dsi_tree, DSI_BLOCKSIZ);
+ dissect_dsi_reply_get_status(tvb, dsi_tree, DSI_BLOCKSIZ);
}
break;
case DSIFUNC_CMD: