summaryrefslogtreecommitdiff
path: root/packet-stat-notify.c
diff options
context:
space:
mode:
authorUwe Girlich <Uwe.Girlich@philosys.de>2002-04-03 13:24:13 +0000
committerUwe Girlich <Uwe.Girlich@philosys.de>2002-04-03 13:24:13 +0000
commit2ca7ff7848e7ae3941ccf9db264a78893994fae5 (patch)
tree6be846e703c823a55cac0a1175540549331dca30 /packet-stat-notify.c
parent78216336d8346a51172ba190f9b8159b4f7c1863 (diff)
downloadwireshark-2ca7ff7848e7ae3941ccf9db264a78893994fae5.tar.gz
Removed many senseless pinfo parameters in RPC dissection and the layers above.
svn path=/trunk/; revision=5090
Diffstat (limited to 'packet-stat-notify.c')
-rw-r--r--packet-stat-notify.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-stat-notify.c b/packet-stat-notify.c
index a177713971..065ecf7a4a 100644
--- a/packet-stat-notify.c
+++ b/packet-stat-notify.c
@@ -2,7 +2,7 @@
* Routines for async NSM stat callback dissection
* 2001 Ronnie Sahlberg <See AUTHORS for email>
*
- * $Id: packet-stat-notify.c,v 1.8 2001/12/23 21:36:57 guy Exp $
+ * $Id: packet-stat-notify.c,v 1.9 2002/04/03 13:24:13 girlich Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -44,12 +44,12 @@ static gint ett_statnotify = -1;
static int
-dissect_statnotify_mon(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_statnotify_mon(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
{
- offset = dissect_rpc_string(tvb,pinfo,tree,hf_statnotify_name,offset,NULL);
+ offset = dissect_rpc_string(tvb,tree,hf_statnotify_name,offset,NULL);
- offset = dissect_rpc_uint32(tvb,pinfo,tree,hf_statnotify_state,offset);
+ offset = dissect_rpc_uint32(tvb,tree,hf_statnotify_state,offset);
proto_tree_add_item(tree,hf_statnotify_priv,tvb,offset,16,FALSE);
offset += 16;