Removed many senseless pinfo parameters in RPC dissection and the layers above.
authorUwe Girlich <Uwe.Girlich@philosys.de>
Wed, 3 Apr 2002 13:24:13 +0000 (13:24 -0000)
committerUwe Girlich <Uwe.Girlich@philosys.de>
Wed, 3 Apr 2002 13:24:13 +0000 (13:24 -0000)
svn path=/trunk/; revision=5090

20 files changed:
packet-bootparams.c
packet-hclnfsd.c
packet-klm.c
packet-mount.c
packet-ndmp.c
packet-nfs.c
packet-nisplus.c
packet-nlm.c
packet-pcnfsd.c
packet-portmap.c
packet-rpc.c
packet-rpc.h
packet-rquota.c
packet-rwall.c
packet-spray.c
packet-stat-notify.c
packet-stat.c
packet-ypbind.c
packet-yppasswd.c
packet-ypserv.c

index 8eb3495190674a3b09e0b8cd852ec93e045e7489..1a18b586ac2c3dd867ad21cf1f4dbf52d04646f7 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-bootparams.c
  * Routines for bootparams dissection
  *
- * $Id: packet-bootparams.c,v 1.19 2001/06/18 02:17:45 guy Exp $
+ * $Id: packet-bootparams.c,v 1.20 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -61,7 +61,7 @@ static const value_string addr_type[] =
 };
 
 static int
-dissect_bp_address(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, int hfindex)
+dissect_bp_address(tvbuff_t *tvb, int offset, proto_tree *tree, int hfindex)
 {
        guint32 type;
        guint32 ipaddr;
@@ -69,7 +69,7 @@ dissect_bp_address(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
 
        type = tvb_get_ntohl(tvb, offset);
        
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_bootparams_addresstype, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_bootparams_addresstype, offset);
 
        switch(type){
        case 1:
@@ -91,49 +91,49 @@ dissect_bp_address(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
 
 
 static int
-dissect_getfile_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_getfile_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_bootparams_host, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_bootparams_fileid, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_bootparams_host, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_bootparams_fileid, offset, NULL);
        }
        
        return offset;
 }
 
 static int
-dissect_getfile_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_getfile_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_bootparams_host, offset, NULL);
-               offset = dissect_bp_address(tvb, offset, pinfo, tree, hf_bootparams_hostaddr);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_bootparams_filepath, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_bootparams_host, offset, NULL);
+               offset = dissect_bp_address(tvb, offset, tree, hf_bootparams_hostaddr);
+               offset = dissect_rpc_string(tvb, tree, hf_bootparams_filepath, offset, NULL);
        }
        
        return offset;
 }
 
 static int
-dissect_whoami_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_whoami_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_bp_address(tvb, offset, pinfo, tree, hf_bootparams_hostaddr);
+               offset = dissect_bp_address(tvb, offset, tree, hf_bootparams_hostaddr);
        }
        
        return offset;
 }
 
 static int
-dissect_whoami_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_whoami_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_bootparams_host, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_bootparams_domain, offset, NULL);
-               offset = dissect_bp_address(tvb, offset, pinfo, tree, hf_bootparams_routeraddr);
+               offset = dissect_rpc_string(tvb, tree, hf_bootparams_host, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_bootparams_domain, offset, NULL);
+               offset = dissect_bp_address(tvb, offset, tree, hf_bootparams_routeraddr);
        }
        
        return offset;
index db9439cec0c6fe54c15040ec44a0dafe388a54cd..27cfa683ed7a101b69c96efa3718b92af562828f 100644 (file)
@@ -2,7 +2,7 @@
  * Routines for hclnfsd (Hummingbird NFS Daemon) dissection
  * Copyright 2001, Mike Frisch <frisch@hummingbird.com>
  *
- * $Id: packet-hclnfsd.c,v 1.11 2002/04/01 22:40:20 guy Exp $
+ * $Id: packet-hclnfsd.c,v 1.12 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -87,7 +87,7 @@ static gint ett_hclnfsd_printjob = -1;
 static gint ett_hclnfsd_auth_ident = -1;
 
 static int
-dissect_hclnfsd_gids(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_gids(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 ngids, ngids_i, gid;
        proto_tree *gidtree = NULL;
@@ -121,7 +121,7 @@ dissect_hclnfsd_gids(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *
 static int
 dissect_hclnfsd_spool_inquire_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_status, offset);
 
        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "spool filehandle");
 
@@ -130,13 +130,13 @@ dissect_hclnfsd_spool_inquire_call(tvbuff_t *tvb, int offset, packet_info *pinfo
 
 
 static int
-dissect_hclnfsd_spool_file_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_spool_file_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_printername, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_printername, offset, NULL);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_filename, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_filename, offset, NULL);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_fileext, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_fileext, offset);
 
        return offset;
 }
@@ -166,7 +166,7 @@ hclnfsd_decode_obscure(char *ident, int ident_len)
 
 
 static int
-dissect_hclnfsd_authorize_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_authorize_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 request_type;
        char *ident = NULL;
@@ -174,7 +174,6 @@ dissect_hclnfsd_authorize_call(tvbuff_t *tvb, int offset, packet_info *pinfo, pr
        char *password = NULL;
        int ident_len = 0;
        int newoffset;
-       char *p;
        proto_item *ident_item = NULL;
        proto_tree *ident_tree = NULL;
 
@@ -187,7 +186,7 @@ dissect_hclnfsd_authorize_call(tvbuff_t *tvb, int offset, packet_info *pinfo, pr
                        4, request_type);
        offset += 4;
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_device, offset, 
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_device, offset, 
                NULL);
 
        if (tree)
@@ -202,7 +201,7 @@ dissect_hclnfsd_authorize_call(tvbuff_t *tvb, int offset, packet_info *pinfo, pr
 
                        if (ident_tree)
                        {
-                               newoffset = dissect_rpc_string(tvb, pinfo, ident_tree,
+                               newoffset = dissect_rpc_string(tvb, ident_tree,
                                        hf_hclnfsd_auth_ident_obscure, offset, &ident);
 
                                proto_item_set_len(ident_item, newoffset - offset);
@@ -236,7 +235,7 @@ dissect_hclnfsd_authorize_call(tvbuff_t *tvb, int offset, packet_info *pinfo, pr
 
 
 static int
-dissect_hclnfsd_authorize_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_authorize_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 status;
 
@@ -250,9 +249,9 @@ dissect_hclnfsd_authorize_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, p
 
        proto_tree_add_uint(tree, hf_hclnfsd_status, tvb, offset, 4, status);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_uid, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_uid, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_gid, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_gid, offset);
 
        offset = dissect_hclnfsd_gids(tvb, offset, pinfo, tree);
 
@@ -260,17 +259,17 @@ dissect_hclnfsd_authorize_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, p
 }
 
 static int
-dissect_hclnfsd_grp_name_to_numb_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_grp_name_to_numb_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_grpname, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_grpname, offset, NULL);
 
        return offset;
 }
 
 static int
-dissect_hclnfsd_grp_name_to_numb_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_grp_name_to_numb_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_gid, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_gid, offset);
        
        return offset;
 }
@@ -287,15 +286,15 @@ dissect_hclnfsd_grp_to_number_call(tvbuff_t *tvb, int offset, packet_info *pinfo
 
 
 static int
-dissect_hclnfsd_grp_to_number_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_grp_to_number_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       return dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_grpname, offset, 
+       return dissect_rpc_string(tvb, tree, hf_hclnfsd_grpname, offset, 
                NULL);
 }
 
 
 static int
-dissect_hclnfsd_return_host_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_return_host_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_tree_add_item(tree, hf_hclnfsd_host_ip, tvb, offset, 4, FALSE);
        offset += 4;
@@ -305,16 +304,16 @@ dissect_hclnfsd_return_host_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 
 static int
-dissect_hclnfsd_return_host_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_return_host_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_hostname, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_hostname, offset, NULL);
 
        return offset;
 }
 
 
 static int
-dissect_hclnfsd_uid_to_name_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_uid_to_name_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 nuids, nuids_i;
        proto_tree *uidtree = NULL;
@@ -335,14 +334,14 @@ dissect_hclnfsd_uid_to_name_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
                return offset;
 
        for (nuids_i = 0; nuids_i < nuids; nuids_i++)
-               offset = dissect_rpc_uint32(tvb, pinfo, uidtree, hf_hclnfsd_uid, offset);
+               offset = dissect_rpc_uint32(tvb, uidtree, hf_hclnfsd_uid, offset);
 
        return offset;
 }
 
 
 static int
-dissect_hclnfsd_uid_to_name_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_uid_to_name_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 nusers, nusers_i;
        proto_tree *usertree = NULL;
@@ -363,7 +362,7 @@ dissect_hclnfsd_uid_to_name_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
                return offset;
 
        for (nusers_i = 0; nusers_i < nusers; nusers_i++)
-               offset = dissect_rpc_string(tvb, pinfo, usertree, 
+               offset = dissect_rpc_string(tvb, usertree, 
                        hf_hclnfsd_username, offset, NULL);
 
        return offset;
@@ -371,18 +370,18 @@ dissect_hclnfsd_uid_to_name_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 
 static int
-dissect_hclnfsd_name_to_uid_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_name_to_uid_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_username, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_username, offset, NULL);
 
        return offset;
 }
 
 
 static int
-dissect_hclnfsd_name_to_uid_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_name_to_uid_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_uid, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_uid, offset);
 
        return offset;
 }
@@ -399,17 +398,17 @@ dissect_hclnfsd_share_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_
                        4, request_type);
        offset += 4;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_cookie, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_cookie, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_lockname, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_lockname, offset, NULL);
 
        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "Filehandle");
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_hclnfsd_unknown_data, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_hclnfsd_unknown_data, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_mode, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_mode, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_access, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_access, offset);
 
        offset += 4;    /* skip last 4 UNUSED bytes */
 
@@ -418,7 +417,7 @@ dissect_hclnfsd_share_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_
 
 
 static int
-dissect_hclnfsd_share_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_share_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 request_type;
 
@@ -428,9 +427,9 @@ dissect_hclnfsd_share_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto
                        4, request_type);
        offset += 4;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_cookie, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_status, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_sequence, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_cookie, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_sequence, offset);
 
        return offset;
 }
@@ -453,30 +452,30 @@ dissect_hclnfsd_unshare_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, pro
 static int
 dissect_hclnfsd_lock_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_status, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_cookie, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_cookie, offset);
        offset += 4; /* skip unused uint */
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_exclusive, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_exclusive, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_lockname, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_lockname, offset, NULL);
 
        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "Filehandle");
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_hclnfsd_lockowner, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_hclnfsd_lockowner, offset);
 
        offset += 4;  /* unused, skip */
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_offset, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_offset, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_length, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_length, offset);
 
        return offset;
 }
 
 
 static int
-dissect_hclnfsd_lock_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_lock_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint request_type;
 
@@ -486,17 +485,17 @@ dissect_hclnfsd_lock_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_
                        4, request_type);
        offset += 4;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_cookie, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_cookie, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_status, offset);
 
        return offset;
 }
 
 
 static int
-dissect_hclnfsd_remove_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_remove_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_lockname, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_lockname, offset, NULL);
 
        offset += 4;  /* skip unused */
 
@@ -509,18 +508,18 @@ dissect_hclnfsd_unlock_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto
 {
        offset += 4;  /* skip unused */
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_cookie, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_cookie, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_lockname, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_lockname, offset, NULL);
 
        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "Filehandle");
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_hclnfsd_unknown_data, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_hclnfsd_unknown_data, offset);
 
        offset += 4;  /* skip unused */
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_offset, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_length, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_offset, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_length, offset);
        
        return offset;
 }
@@ -534,7 +533,7 @@ dissect_hclnfsd_unlock_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, prot
 
 
 static int
-dissect_hclnfsd_get_printers_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_get_printers_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint nqueues, nqueues_i;
        proto_item *queuesitem = NULL;
@@ -558,11 +557,11 @@ dissect_hclnfsd_get_printers_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
        for (nqueues_i = 0; nqueues_i < nqueues; nqueues_i++)
        {
                /* create new item for print queue */
-               offset = dissect_rpc_string(tvb, pinfo, tree, 
+               offset = dissect_rpc_string(tvb, tree, 
                        hf_hclnfsd_queuename, offset, NULL);
 
                /* create subtree on new item with print queue comment */
-               offset = dissect_rpc_string(tvb, pinfo, tree, 
+               offset = dissect_rpc_string(tvb, tree, 
                        hf_hclnfsd_queuecomment, offset, NULL);
        }
 
@@ -571,18 +570,18 @@ dissect_hclnfsd_get_printers_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
 
 
 static int
-dissect_hclnfsd_get_printq_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_get_printq_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_queuename, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_queuename, offset, NULL);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_username, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_username, offset, NULL);
 
        return offset;
 }
 
 
 static int
-dissect_hclnfsd_get_printq_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_hclnfsd_get_printq_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint datafollows, jobid;
        proto_item *queueitem = NULL;
@@ -590,13 +589,13 @@ dissect_hclnfsd_get_printq_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_item *jobitem;
        proto_tree *jobtree;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_printqueuenumber, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_printqueuenumber, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_hclnfsd_queuecomment, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_hclnfsd_queuecomment, offset, NULL);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_queuestatus, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_queuestatus, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_numphysicalprinters, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_numphysicalprinters, offset);
 
        datafollows = tvb_get_ntohl(tvb, offset);
        if (tree)
@@ -620,19 +619,19 @@ dissect_hclnfsd_get_printq_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
                jobtree = proto_item_add_subtree(jobitem, ett_hclnfsd_printjob);
                        
-               offset = dissect_rpc_string(tvb, pinfo, tree, 
+               offset = dissect_rpc_string(tvb, tree, 
                        hf_hclnfsd_username, offset, NULL);
 
-               offset = dissect_rpc_string(tvb, pinfo, tree, 
+               offset = dissect_rpc_string(tvb, tree, 
                        hf_hclnfsd_printparams, offset, NULL);
 
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_queuestatus, offset);
+               offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_queuestatus, offset);
 
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_jobstatus, offset);
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_timesubmitted, offset);
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_size, offset);
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_hclnfsd_copies, offset);
-               offset = dissect_rpc_string(tvb, pinfo, tree, 
+               offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_jobstatus, offset);
+               offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_timesubmitted, offset);
+               offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_size, offset);
+               offset = dissect_rpc_uint32(tvb, tree, hf_hclnfsd_copies, offset);
+               offset = dissect_rpc_string(tvb, tree, 
                        hf_hclnfsd_queuecomment, offset, NULL);
 
                datafollows = tvb_get_ntohl(tvb, offset);
index 1e99dbbbd7e5297a397d9b53ccc9495121a8ec97..47d93df7607b0b7a07075ad462270bbf9eb2de75 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-klm.c    2001 Ronnie Sahlberg <See AUTHORS for email>
  * Routines for klm dissection
  *
- * $Id: packet-klm.c,v 1.7 2002/01/24 09:20:49 guy Exp $
+ * $Id: packet-klm.c,v 1.8 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -65,7 +65,7 @@ static const value_string names_klm_stats[] =
 };
 
 static int
-dissect_holder(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
+dissect_holder(tvbuff_t *tvb, proto_tree *tree, int offset)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -75,23 +75,23 @@ dissect_holder(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
 
        lock_tree = proto_item_add_subtree(lock_item, ett_klm_holder);
 
-       offset = dissect_rpc_bool( tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_bool( tvb, lock_tree, 
                        hf_klm_exclusive, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_klm_pid, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_klm_offset, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_klm_len, offset);
 
        return offset;
 }
        
 static int
-dissect_lock(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
+dissect_lock(tvbuff_t *tvb, packet_infopinfo, proto_tree *tree, int offset)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -101,18 +101,18 @@ dissect_lock(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
 
        lock_tree = proto_item_add_subtree(lock_item, ett_klm_lock);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_klm_servername, offset, NULL);
 
        offset = dissect_nfs_fh3(tvb, offset, pinfo, lock_tree,"fh");
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_klm_pid, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_klm_offset, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_klm_len, offset);
 
        return offset;
@@ -127,10 +127,10 @@ dissect_klm_unlock_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tre
 }
 
 static int
-dissect_klm_stat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_klm_stat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_klm_stats, offset);
 
        return offset;
@@ -139,10 +139,10 @@ dissect_klm_stat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 static int
 dissect_klm_lock_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_bool( tvb, pinfo, tree, 
+       offset = dissect_rpc_bool( tvb, tree, 
                        hf_klm_block, offset);
 
-       offset = dissect_rpc_bool( tvb, pinfo, tree, 
+       offset = dissect_rpc_bool( tvb, tree, 
                        hf_klm_exclusive, offset);
 
        offset = dissect_lock(tvb, pinfo, tree, offset);
@@ -151,17 +151,17 @@ dissect_klm_lock_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 }
 
 static int
-dissect_klm_test_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_klm_test_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        gint32  stats;
 
        stats = tvb_get_ntohl(tvb, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_klm_stats, offset);
 
        if (stats == KLM_DENIED) {
-               offset = dissect_holder(tvb, pinfo, tree, offset);
+               offset = dissect_holder(tvb, tree, offset);
        }
 
        return offset;
@@ -170,7 +170,7 @@ dissect_klm_test_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 static int
 dissect_klm_test_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_bool( tvb, pinfo, tree, 
+       offset = dissect_rpc_bool( tvb, tree, 
                        hf_klm_exclusive, offset);
 
        offset = dissect_lock(tvb, pinfo, tree, offset);
index 67422dcfc8f612ca820c53b555348fcaa022fa64..1a95a03fce7d4f01f30c50cf16a8b7236c92263b 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-mount.c
  * Routines for mount dissection
  *
- * $Id: packet-mount.c,v 1.29 2002/01/20 22:12:26 guy Exp $
+ * $Id: packet-mount.c,v 1.30 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -95,7 +95,7 @@ dissect_fhstatus(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
        gint32 status;
 
        status=tvb_get_ntohl(tvb,offset);
-       offset = dissect_rpc_uint32(tvb,pinfo,tree,hf_mount3_status,offset);
+       offset = dissect_rpc_uint32(tvb,tree,hf_mount3_status,offset);
 
        switch (status) {
                case 0:
@@ -111,7 +111,7 @@ dissect_fhstatus(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 
 
 static int
-dissect_mount_dirpath_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_mount_dirpath_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if((!pinfo->fd->flags.visited) && nfs_file_name_snooping){
                rpc_call_info_value *civ=pinfo->private_data;
@@ -133,7 +133,7 @@ dissect_mount_dirpath_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_
 
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb,pinfo,tree,hf_mount_path,offset,NULL);
+               offset = dissect_rpc_string(tvb,tree,hf_mount_path,offset,NULL);
        }
        
        return offset;
@@ -154,7 +154,7 @@ dissect_mount1_mnt_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tr
 /* RFC 1094, Page 26 */
 /* RFC 1813, Page 110 */
 static int
-dissect_mountlist(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_mountlist(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -169,9 +169,9 @@ dissect_mountlist(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
                        lock_tree = proto_item_add_subtree(lock_item, ett_mount_mountlist);
        }
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_mount_mountlist_hostname, offset, &hostname);
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_mount_mountlist_directory, offset, &directory);
 
        if (lock_item) {
@@ -202,7 +202,7 @@ dissect_mount_dump_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tr
 /* RFC 1094, Page 26 */
 /* RFC 1813, Page 110 */
 static int
-dissect_group(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_group(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        int len,str_len;
        len=tvb_get_ntohl(tvb,offset);
@@ -218,7 +218,7 @@ dissect_group(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
        }
        group_name_list[group_names_len]=0;
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_mount_groups_group, offset, NULL);
 
        return offset;
@@ -247,7 +247,7 @@ dissect_exportlist(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
                        exportlist_tree = proto_item_add_subtree(exportlist_item, ett_mount_exportlist);
        }
 
-       offset = dissect_rpc_string(tvb, pinfo, exportlist_tree,
+       offset = dissect_rpc_string(tvb, exportlist_tree,
                        hf_mount_exportlist_directory, offset, &directory);
        groups_offset = offset;
 
@@ -357,7 +357,7 @@ static const true_false_string tos_error_vdisable = {
 
 
 static int
-dissect_mount_pathconf_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_mount_pathconf_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        int saved_offset;
        guint32 pc_mask;
@@ -372,7 +372,7 @@ dissect_mount_pathconf_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, prot
        pc_mask = tvb_get_ntohl(tvb, offset+OFFS_MASK) & 0xffff;
        if (!(pc_mask & (PC_ERROR_LINK_MAX|PC_ERROR_ALL))) {
                if (tree) {
-                       dissect_rpc_uint32(tvb,pinfo,tree,hf_mount_pathconf_link_max,offset);
+                       dissect_rpc_uint32(tvb,tree,hf_mount_pathconf_link_max,offset);
                }
        }
        offset += 4;
@@ -485,13 +485,13 @@ static const value_string mount3_mountstat3[] =
 
 /* RFC 1813, Page 107 */
 static int
-dissect_mountstat3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int hfindex, guint32 *status)
+dissect_mountstat3(tvbuff_t *tvb, proto_tree *tree, int offset, int hfindex, guint32 *status)
 {
        guint32 mountstat3;
 
        mountstat3 = tvb_get_ntohl(tvb, offset);
 
-       offset = dissect_rpc_uint32(tvb,pinfo,tree,hfindex,offset);
+       offset = dissect_rpc_uint32(tvb,tree,hfindex,offset);
        *status = mountstat3;
        return offset;
 }
@@ -505,7 +505,7 @@ dissect_mount3_mnt_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tr
        guint32 auth_flavor;
        guint32 auth_flavor_i;
        
-       offset = dissect_mountstat3(tvb,pinfo,tree,offset,hf_mount3_status,&status);
+       offset = dissect_mountstat3(tvb,tree,offset,hf_mount3_status,&status);
 
        switch (status) {
                case 0:
index 098cf3aa46c68605beaf1c197a7fcc7836459072..6e251a4888c4898490020220b0e597903f96cb44 100644 (file)
@@ -2,7 +2,7 @@
  * Routines for NDMP dissection
  * 2001 Ronnie Sahlberg (see AUTHORS for email)
  *
- * $Id: packet-ndmp.c,v 1.16 2002/02/18 23:51:55 guy Exp $
+ * $Id: packet-ndmp.c,v 1.17 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -457,19 +457,19 @@ dissect_ndmp_get_host_info_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        /* hostname */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_hostname, offset, NULL);
 
        /* os type */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_os_type, offset, NULL);
 
        /* os version */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_os_vers, offset, NULL);
 
        /* hostid */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_hostid, offset, NULL);
 
        return offset;
@@ -575,11 +575,11 @@ static int
 dissect_default_env(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /* name */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_butype_env_name, offset, NULL);
 
        /* value */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_butype_env_value, offset, NULL);
 
        return offset;
@@ -663,7 +663,7 @@ static int
 dissect_butype_info(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /*butype name*/
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_butype_name, offset, NULL);
 
        /* default env */
@@ -744,11 +744,11 @@ static int
 dissect_fs_env(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /* name */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_fs_env_name, offset, NULL);
 
        /* value */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_fs_env_value, offset, NULL);
 
        return offset;
@@ -761,35 +761,35 @@ dissect_fs_info(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
        offset=dissect_fs_invalid(tvb, offset, pinfo, tree);
 
        /* fs type */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_fs_fs_type, offset, NULL);
 
        /* fs logical device */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_fs_logical_device, offset, NULL);
 
        /* fs physical device */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_fs_physical_device, offset, NULL);
 
        /*total_size*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_fs_total_size,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_fs_total_size,
                        offset);
 
        /*used_size*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_fs_used_size,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_fs_used_size,
                        offset);
 
        /*avail_size*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_fs_avail_size,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_fs_avail_size,
                        offset);
 
        /*total_inodes*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_fs_total_inodes,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_fs_total_inodes,
                        offset);
 
        /*used_inodes*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_fs_used_inodes,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_fs_used_inodes,
                        offset);
 
        /* env */
@@ -797,7 +797,7 @@ dissect_fs_info(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
                        dissect_fs_env, hf_ndmp_fs_env);
 
        /* status */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_fs_status, offset, NULL);
 
        return offset;
@@ -853,11 +853,11 @@ static int
 dissect_tape_capability(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /* name */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_tape_capability_name, offset, NULL);
 
        /* value */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_tape_capability_value, offset, NULL);
 
        return offset;
@@ -867,7 +867,7 @@ static int
 dissect_tape_dev_cap(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /* device */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_tape_device, offset, NULL);
 
        /* tape attributes */
@@ -884,7 +884,7 @@ static int
 dissect_tape_info(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /* model */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_tape_model, offset, NULL);
 
        /* device capabilites */
@@ -913,7 +913,7 @@ static int
 dissect_scsi_info(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /* model */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_scsi_model, offset, NULL);
 
        /* device capabilites */
@@ -947,15 +947,15 @@ dissect_get_server_info_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        /* vendor */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_server_vendor, offset, NULL);
 
        /* product */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_server_product, offset, NULL);
 
        /* revision */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_server_revision, offset, NULL);
 
 
@@ -971,7 +971,7 @@ dissect_scsi_open_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree, guint32 seq)
 {
        /* device */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_scsi_device, offset, NULL);
 
        return offset;
@@ -1005,7 +1005,7 @@ dissect_scsi_set_state_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree, guint32 seq)
 {
        /* device */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_scsi_device, offset, NULL);
 
        /* controller */
@@ -1238,7 +1238,7 @@ dissect_tape_open_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree, guint32 seq)
 {
        /* device */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_tape_device, offset, NULL);
 
        /* open mode */
@@ -1385,11 +1385,11 @@ dissect_tape_get_state_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        /* total_space */
-       offset = dissect_rpc_uint64(tvb, pinfo, tree,hf_ndmp_tape_total_space,
+       offset = dissect_rpc_uint64(tvb, tree,hf_ndmp_tape_total_space,
                        offset);
 
        /* space_remain */
-       offset = dissect_rpc_uint64(tvb, pinfo, tree,hf_ndmp_tape_space_remain,
+       offset = dissect_rpc_uint64(tvb, tree,hf_ndmp_tape_space_remain,
                        offset);
 
        /* partition */
@@ -1531,7 +1531,7 @@ dissect_ndmp_addr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *par
                break;
        case NDMP_ADDR_IPC:
                /* IPC address */
-               offset = dissect_rpc_data(tvb, pinfo, tree, hf_ndmp_addr_ipc, offset);
+               offset = dissect_rpc_data(tvb, tree, hf_ndmp_addr_ipc, offset);
                break;
        }
 
@@ -1674,7 +1674,7 @@ dissect_log_file_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree, guint32 seq)
 {
        /* file */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_file_name, offset, NULL);
 
        /* error */
@@ -1709,7 +1709,7 @@ dissect_log_message_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        /* message */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_log_message, offset, NULL);
 
        return offset;
@@ -1724,7 +1724,7 @@ dissect_notify_data_halted_request(tvbuff_t *tvb, int offset,
        offset += 4;
 
        /* reason */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_halt_reason, offset, NULL);
 
        return offset;
@@ -1753,7 +1753,7 @@ dissect_notify_connected_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        /* reason */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_connected_reason, offset, NULL);
 
        return offset;
@@ -1791,18 +1791,18 @@ dissect_auth_data(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
                break;
        case NDMP_AUTH_TEXT:
                /* auth id */
-               offset = dissect_rpc_string(tvb, pinfo, tree,
+               offset = dissect_rpc_string(tvb, tree,
                                hf_ndmp_auth_id, offset, NULL);
 
                /* auth password */
-               offset = dissect_rpc_string(tvb, pinfo, tree,
+               offset = dissect_rpc_string(tvb, tree,
                                hf_ndmp_auth_password, offset, NULL);
 
                
                break;
        case NDMP_AUTH_MD5:
                /* auth id */
-               offset = dissect_rpc_string(tvb, pinfo, tree,
+               offset = dissect_rpc_string(tvb, tree,
                                hf_ndmp_auth_id, offset, NULL);
 
                /* digest */
@@ -1840,7 +1840,7 @@ dissect_tape_write_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree, guint32 seq)
 {
        /* data */
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_ndmp_data, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_ndmp_data, offset);
 
        return offset;
 }
@@ -1880,7 +1880,7 @@ dissect_tape_read_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        /* data */
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_ndmp_data, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_ndmp_data, offset);
 
        return offset;
 }
@@ -1918,7 +1918,7 @@ dissect_file_name(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *par
        switch(type){
        case NDMP_FS_UNIX:
                /* file */
-               offset = dissect_rpc_string(tvb, pinfo, tree,
+               offset = dissect_rpc_string(tvb, tree,
                                hf_ndmp_file_name, offset, &name);
                if (check_col(pinfo->cinfo, COL_INFO)){
                        col_append_fstr(pinfo->cinfo, COL_INFO, " %s ", name);
@@ -1926,19 +1926,19 @@ dissect_file_name(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *par
                break;
        case NDMP_FS_NT:
                /* nt file */
-               offset = dissect_rpc_string(tvb, pinfo, tree,
+               offset = dissect_rpc_string(tvb, tree,
                                hf_ndmp_nt_file_name, offset, &name);
                if (check_col(pinfo->cinfo, COL_INFO)){
                        col_append_fstr(pinfo->cinfo, COL_INFO, " %s ", name);
                }
 
                /* dos file */
-               offset = dissect_rpc_string(tvb, pinfo, tree,
+               offset = dissect_rpc_string(tvb, tree,
                                hf_ndmp_dos_file_name, offset, NULL);
                break;
        default:
                /* file */
-               offset = dissect_rpc_string(tvb, pinfo, tree,
+               offset = dissect_rpc_string(tvb, tree,
                                hf_ndmp_file_name, offset, &name);
                if (check_col(pinfo->cinfo, COL_INFO)){
                        col_append_fstr(pinfo->cinfo, COL_INFO, " %s ", name);
@@ -2072,7 +2072,7 @@ dissect_file_stats(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *pa
        offset += 4;
 
        /*file size*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_file_size,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_file_size,
                        offset);
 
        /* links */
@@ -2192,7 +2192,7 @@ dissect_data_start_backup_request(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree, guint32 seq)
 {
        /*butype name*/
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_butype_name, offset, NULL);
 
        /* default env */
@@ -2206,19 +2206,19 @@ static int
 dissect_nlist(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
        /*original path*/
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_bu_original_path, offset, NULL);
 
        /*destination dir*/
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_bu_destination_dir, offset, NULL);
 
        /*new name*/
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_bu_new_name, offset, NULL);
 
        /*other name*/
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_bu_other_name, offset, NULL);
 
        /* node */
@@ -2246,7 +2246,7 @@ dissect_data_start_recover_request(tvbuff_t *tvb, int offset,
                        dissect_nlist, hf_ndmp_nlist);
 
        /*butype name*/
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_ndmp_butype_name, offset, NULL);
 
        return offset;
@@ -2363,11 +2363,11 @@ dissect_data_get_state_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        /*bytes processed*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_data_bytes_processed,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_data_bytes_processed,
                        offset);
 
        /*est bytes remain*/
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_ndmp_data_est_bytes_remain,
+       offset = dissect_rpc_uint64(tvb, tree, hf_ndmp_data_est_bytes_remain,
                        offset);
 
        /* est time remain */
index cc43dc1aa823036a4efde8b470fb70388015df92..46c175f138231096b3ecf7cd5f161ff804238bf3 100644 (file)
@@ -2,7 +2,7 @@
  * Routines for nfs dissection
  * Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de>
  * Copyright 2000-2002, Mike Frisch <frisch@hummingbird.com> (NFSv4 decoding)
- * $Id: packet-nfs.c,v 1.68 2002/03/07 05:51:11 guy Exp $
+ * $Id: packet-nfs.c,v 1.69 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -450,7 +450,7 @@ nfs_name_snoop_unmatched_hash(gconstpointer k)
        return key;
 }
 static gboolean
-nfs_name_snoop_unmatched_free_all(gpointer key_arg, gpointer value, gpointer user_data)
+nfs_name_snoop_unmatched_free_all(gpointer key_arg _U_, gpointer value, gpointer user_data _U_)
 {
        nfs_name_snoop_t *nns = (nfs_name_snoop_t *)value;
 
@@ -759,7 +759,7 @@ static const value_string names_fhtype[] =
 
 static void
 dissect_fhandle_data_SVR4(tvbuff_t* tvb, int offset, proto_tree *tree,
-    int fhlen)
+    int fhlen _U_)
 {
        guint32 nof = offset;
 
@@ -910,7 +910,7 @@ dissect_fhandle_data_SVR4(tvbuff_t* tvb, int offset, proto_tree *tree,
 
 static void
 dissect_fhandle_data_LINUX_KNFSD_LE(tvbuff_t* tvb, int offset, proto_tree *tree,
-    int fhlen)
+    int fhlen _U_)
 {
        guint32 dentry;
        guint32 inode;
@@ -991,7 +991,7 @@ dissect_fhandle_data_LINUX_KNFSD_LE(tvbuff_t* tvb, int offset, proto_tree *tree,
 
 void
 dissect_fhandle_data_LINUX_NFSD_LE(tvbuff_t* tvb, int offset, proto_tree *tree,
-    int fhlen)
+    int fhlen _U_)
 {
        /* pseudo inode */
        {
@@ -1061,7 +1061,7 @@ static const value_string fileid_type_names[] = {
 
 static void
 dissect_fhandle_data_LINUX_KNFSD_NEW(tvbuff_t* tvb, int offset, proto_tree *tree,
-    int fhlen)
+    int fhlen _U_)
 {
        guint8 version;
        guint8 auth_type;
@@ -1469,7 +1469,7 @@ const value_string names_nfs_stat4[] = {
  * well as being backwards compatible with NFSv2 and NFSv3.
  */
 int
-dissect_stat_internal(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_stat_internal(tvbuff_t *tvb, int offset,
        proto_tree *tree, guint32* status, int nfsvers)
 {
        guint32 stat;
@@ -1495,36 +1495,36 @@ dissect_stat_internal(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1094, Page 12..14 */
 int
-dissect_stat(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_stat(tvbuff_t *tvb, int offset, proto_tree *tree,
        guint32 *status)
 {
-       return dissect_stat_internal(tvb, offset, pinfo, tree, status, !4);
+       return dissect_stat_internal(tvb, offset, tree, status, !4);
 }
 
 
 /* RFC 1094, Page 12..14 */
 int
-dissect_nfs2_stat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree)
+dissect_nfs2_stat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
 
        return offset;
 }
 
 
 int
-dissect_nfs_nfsstat4(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfs_nfsstat4(tvbuff_t *tvb, int offset,
        proto_tree *tree, guint32 *status)
 {
-       return dissect_stat_internal(tvb, offset, pinfo, tree, status, 4);
+       return dissect_stat_internal(tvb, offset, tree, status, 4);
 }
 
 
 /* RFC 1094, Page 15 */
 int
-dissect_ftype(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_ftype(tvbuff_t *tvb, int offset, proto_tree *tree,
 char* name)
 {
        guint32 ftype;
@@ -1612,7 +1612,7 @@ dissect_nfs2_fhandle_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_t
 
 /* RFC 1094, Page 15 */
 int
-dissect_timeval(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, int hf_time, int hf_time_sec, int hf_time_usec)
+dissect_timeval(tvbuff_t *tvb, int offset, proto_tree *tree, int hf_time, int hf_time_sec, int hf_time_usec)
 {
        guint32 seconds;
        guint32 useconds;
@@ -1656,7 +1656,7 @@ const value_string nfs2_mode_names[] = {
 };
 
 int
-dissect_mode(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_mode(tvbuff_t *tvb, int offset, proto_tree *tree,
 char* name)
 {
        guint32 mode;
@@ -1709,7 +1709,7 @@ char* name)
 
 /* RFC 1094, Page 15 */
 int
-dissect_fattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, char* name)
+dissect_fattr(tvbuff_t *tvb, int offset, proto_tree *tree, char* name)
 {
        proto_item* fattr_item = NULL;
        proto_tree* fattr_tree = NULL;
@@ -1721,21 +1721,21 @@ dissect_fattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, c
                fattr_tree = proto_item_add_subtree(fattr_item, ett_nfs_fattr);
        }
 
-       offset = dissect_ftype(tvb, offset, pinfo, fattr_tree, "type");
-       offset = dissect_mode(tvb, offset, pinfo, fattr_tree, "mode");
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_nlink, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_uid, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_gid, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_size, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_blocksize, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_rdev, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_blocks, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_fsid, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr_tree, hf_nfs_fattr_fileid, offset);
+       offset = dissect_ftype(tvb, offset, fattr_tree, "type");
+       offset = dissect_mode(tvb, offset, fattr_tree, "mode");
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_nlink, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_uid, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_gid, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_size, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_blocksize, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_rdev, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_blocks, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_fsid, offset);
+       offset = dissect_rpc_uint32(tvb, fattr_tree, hf_nfs_fattr_fileid, offset);
 
-       offset = dissect_timeval(tvb, offset, pinfo, fattr_tree, hf_nfs_atime, hf_nfs_atime_sec, hf_nfs_atime_usec);
-       offset = dissect_timeval(tvb, offset, pinfo, fattr_tree, hf_nfs_mtime, hf_nfs_mtime_sec, hf_nfs_mtime_usec);
-       offset = dissect_timeval(tvb, offset, pinfo, fattr_tree, hf_nfs_ctime, hf_nfs_ctime_sec, hf_nfs_ctime_usec);
+       offset = dissect_timeval(tvb, offset, fattr_tree, hf_nfs_atime, hf_nfs_atime_sec, hf_nfs_atime_usec);
+       offset = dissect_timeval(tvb, offset, fattr_tree, hf_nfs_mtime, hf_nfs_mtime_sec, hf_nfs_mtime_usec);
+       offset = dissect_timeval(tvb, offset, fattr_tree, hf_nfs_ctime, hf_nfs_ctime_sec, hf_nfs_ctime_usec);
 
        /* now we know, that fattr is shorter */
        if (fattr_item) {
@@ -1748,7 +1748,7 @@ dissect_fattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, c
 
 /* RFC 1094, Page 17 */
 int
-dissect_sattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, char* name)
+dissect_sattr(tvbuff_t *tvb, int offset, proto_tree *tree, char* name)
 {
        proto_item* sattr_item = NULL;
        proto_tree* sattr_tree = NULL;
@@ -1761,14 +1761,14 @@ dissect_sattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, c
        }
 
        if (tvb_get_ntohl(tvb, offset+0) != 0xffffffff)
-               offset = dissect_mode(tvb, offset, pinfo, sattr_tree, "mode");
+               offset = dissect_mode(tvb, offset, sattr_tree, "mode");
        else {
                proto_tree_add_text(sattr_tree, tvb, offset, 4, "mode: no value");
                offset += 4;
        }
 
        if (tvb_get_ntohl(tvb, offset+0) != 0xffffffff)
-               offset = dissect_rpc_uint32(tvb, pinfo, sattr_tree, hf_nfs_fattr_uid,
+               offset = dissect_rpc_uint32(tvb, sattr_tree, hf_nfs_fattr_uid,
                        offset);
        else {
                proto_tree_add_text(sattr_tree, tvb, offset, 4, "uid: no value");
@@ -1776,7 +1776,7 @@ dissect_sattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, c
        }
 
        if (tvb_get_ntohl(tvb, offset+0) != 0xffffffff)
-               offset = dissect_rpc_uint32(tvb, pinfo, sattr_tree, hf_nfs_fattr_gid,
+               offset = dissect_rpc_uint32(tvb, sattr_tree, hf_nfs_fattr_gid,
                        offset);
        else {
                proto_tree_add_text(sattr_tree, tvb, offset, 4, "gid: no value");
@@ -1784,7 +1784,7 @@ dissect_sattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, c
        }
 
        if (tvb_get_ntohl(tvb, offset+0) != 0xffffffff)
-               offset = dissect_rpc_uint32(tvb, pinfo, sattr_tree, hf_nfs_fattr_size,
+               offset = dissect_rpc_uint32(tvb, sattr_tree, hf_nfs_fattr_size,
                        offset);
        else {
                proto_tree_add_text(sattr_tree, tvb, offset, 4, "size: no value");
@@ -1792,14 +1792,14 @@ dissect_sattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, c
        }
 
        if (tvb_get_ntohl(tvb, offset+0) != 0xffffffff) {
-               offset = dissect_timeval(tvb, offset, pinfo, sattr_tree, hf_nfs_atime, hf_nfs_atime_sec, hf_nfs_atime_usec);
+               offset = dissect_timeval(tvb, offset, sattr_tree, hf_nfs_atime, hf_nfs_atime_sec, hf_nfs_atime_usec);
        } else {
                proto_tree_add_text(sattr_tree, tvb, offset, 8, "atime: no value");
                offset += 8;
        }
 
        if (tvb_get_ntohl(tvb, offset+0) != 0xffffffff) {
-               offset = dissect_timeval(tvb, offset, pinfo, sattr_tree, hf_nfs_mtime, hf_nfs_mtime_sec, hf_nfs_mtime_usec);
+               offset = dissect_timeval(tvb, offset, sattr_tree, hf_nfs_mtime, hf_nfs_mtime_sec, hf_nfs_mtime_usec);
        } else {
                proto_tree_add_text(sattr_tree, tvb, offset, 8, "mtime: no value");
                offset += 8;
@@ -1816,32 +1816,32 @@ dissect_sattr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, c
 
 /* RFC 1094, Page 17 */
 int
-dissect_filename(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_filename(tvbuff_t *tvb, int offset,
     proto_tree *tree, int hf, char **string_ret)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf, offset, string_ret);
+       offset = dissect_rpc_string(tvb, tree, hf, offset, string_ret);
        return offset;
 }
 
 
 /* RFC 1094, Page 17 */
 int
-dissect_path(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, int hf)
+dissect_path(tvbuff_t *tvb, int offset, proto_tree *tree, int hf)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf, offset, NULL);
        return offset;
 }
 
 
 /* RFC 1094, Page 17,18 */
 int
-dissect_attrstat(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree){
+dissect_attrstat(tvbuff_t *tvb, int offset, proto_tree *tree){
        guint32 status;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_fattr(tvb, offset, pinfo, tree, "attributes");
+                       offset = dissect_fattr(tvb, offset, tree, "attributes");
                break;
                default:
                        /* do nothing */
@@ -1854,9 +1854,9 @@ dissect_attrstat(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 
 /* RFC 1094, Page 17,18 */
 int
-dissect_nfs2_attrstat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree)
+dissect_nfs2_attrstat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree* tree)
 {
-       offset = dissect_attrstat(tvb, offset, pinfo, tree);
+       offset = dissect_attrstat(tvb, offset, tree);
 
        return offset;
 }
@@ -1893,7 +1893,7 @@ dissect_diropargs(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
        }
 
        offset = dissect_fhandle (tvb,offset,pinfo,diropargs_tree,"dir");
-       offset = dissect_filename(tvb,offset,pinfo,diropargs_tree,hf_nfs_name,NULL);
+       offset = dissect_filename(tvb,offset,      diropargs_tree,hf_nfs_name,NULL);
 
        /* now we know, that diropargs is shorter */
        if (diropargs_item) {
@@ -1920,11 +1920,11 @@ dissect_diropres(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 {
        guint32 status;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
                        offset = dissect_fhandle(tvb, offset, pinfo, tree, "file");
-                       offset = dissect_fattr  (tvb, offset, pinfo, tree, "attributes");
+                       offset = dissect_fattr  (tvb, offset, tree, "attributes");
                break;
                default:
                        /* do nothing */
@@ -1937,10 +1937,10 @@ dissect_diropres(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 
 /* nfsdata is simply a chunk of RPC opaque data (length, data, fill bytes) */
 int
-dissect_nfsdata(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfsdata(tvbuff_t *tvb, int offset,
        proto_tree *tree, int hf)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf, offset);
+       offset = dissect_rpc_data(tvb, tree, hf, offset);
        return offset;
 }
 
@@ -1961,7 +1961,7 @@ dissect_nfs2_setattr_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree *tree)
 {
        offset = dissect_fhandle(tvb, offset, pinfo, tree, "file"      );
-       offset = dissect_sattr  (tvb, offset, pinfo, tree, "attributes");
+       offset = dissect_sattr  (tvb, offset,        tree, "attributes");
 
        return offset;
 }
@@ -1969,15 +1969,15 @@ dissect_nfs2_setattr_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1094, Page 6 */
 int
-dissect_nfs2_readlink_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfs2_readlink_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_
        proto_tree *tree)
 {
        guint32 status;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_path(tvb, offset, pinfo, tree, hf_nfs_readlink_data);
+                       offset = dissect_path(tvb, offset, tree, hf_nfs_readlink_data);
                break;
                default:
                        /* do nothing */
@@ -2017,16 +2017,16 @@ dissect_nfs2_read_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1094, Page 7 */
 int
-dissect_nfs2_read_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfs2_read_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_fattr(tvb, offset, pinfo, tree, "attributes");
-                       offset = dissect_nfsdata(tvb, offset, pinfo, tree, hf_nfs_data); 
+                       offset = dissect_fattr(tvb, offset, tree, "attributes");
+                       offset = dissect_nfsdata(tvb, offset, tree, hf_nfs_data); 
                break;
                default:
                        /* do nothing */
@@ -2060,7 +2060,7 @@ dissect_nfs2_write_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        }
        offset += 12;
 
-       offset = dissect_nfsdata(tvb, offset, pinfo, tree, hf_nfs_data); 
+       offset = dissect_nfsdata(tvb, offset, tree, hf_nfs_data); 
 
        return offset;
 }
@@ -2072,7 +2072,7 @@ dissect_nfs2_createargs_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree *tree)
 {
        offset = dissect_diropargs(tvb, offset, pinfo, tree, "where"     );
-       offset = dissect_sattr    (tvb, offset, pinfo, tree, "attributes");
+       offset = dissect_sattr    (tvb, offset,        tree, "attributes");
 
        return offset;
 }
@@ -2108,8 +2108,8 @@ dissect_nfs2_symlink_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree *tree)
 {
        offset = dissect_diropargs(tvb, offset, pinfo, tree, "from"           );
-       offset = dissect_path     (tvb, offset, pinfo, tree, hf_nfs_symlink_to);
-       offset = dissect_sattr    (tvb, offset, pinfo, tree, "attributes"     );
+       offset = dissect_path     (tvb, offset,        tree, hf_nfs_symlink_to);
+       offset = dissect_sattr    (tvb, offset,        tree, "attributes"     );
 
        return offset;
 }
@@ -2140,7 +2140,7 @@ dissect_nfs2_readdir_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1094, Page 11 */
 int
-dissect_readdir_entry(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_readdir_entry(tvbuff_t *tvb, int offset, packet_info *pinfo _U_
        proto_tree* tree)
 {
        proto_item* entry_item = NULL;
@@ -2162,7 +2162,7 @@ dissect_readdir_entry(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        offset+0, 4, fileid);
        offset += 4;
 
-       offset = dissect_filename(tvb, offset, pinfo, entry_tree,
+       offset = dissect_filename(tvb, offset, entry_tree,
                hf_nfs_readdir_entry_name, &name);
        if (entry_item)
                proto_item_set_text(entry_item, "Entry: file ID %u, name %s",
@@ -2191,7 +2191,7 @@ dissect_nfs2_readdir_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        guint32 status;
        guint32 eof_value;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
                        offset = dissect_rpc_list(tvb, pinfo, tree, offset, 
@@ -2213,7 +2213,7 @@ dissect_nfs2_readdir_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1094, Page 12 */
 int
-dissect_nfs2_statfs_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs2_statfs_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
@@ -2223,7 +2223,7 @@ dissect_nfs2_statfs_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        guint32 bfree;
        guint32 bavail;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
                        tsize  = tvb_get_ntohl(tvb, offset+ 0);
@@ -2305,26 +2305,26 @@ static const vsff nfs2_proc[] = {
 
 /* RFC 1813, Page 15 */
 int
-dissect_filename3(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_filename3(tvbuff_t *tvb, int offset,
     proto_tree *tree, int hf, char **string_ret)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf, offset, string_ret);
+       offset = dissect_rpc_string(tvb, tree, hf, offset, string_ret);
        return offset;
 }
 
 
 /* RFC 1813, Page 15 */
 int
-dissect_nfspath3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfspath3(tvbuff_t *tvb, int offset,
        proto_tree *tree, int hf)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf, offset, NULL);
        return offset;
 }
 
 /* RFC 1813, Page 15 */
 int
-dissect_cookieverf3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_cookieverf3(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
        proto_tree_add_text(tree, tvb, offset, NFS3_COOKIEVERFSIZE,
@@ -2336,7 +2336,7 @@ dissect_cookieverf3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 16 */
 int
-dissect_createverf3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_createverf3(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
        proto_tree_add_text(tree, tvb, offset, NFS3_CREATEVERFSIZE,
@@ -2348,7 +2348,7 @@ dissect_createverf3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 16 */
 int
-dissect_writeverf3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_writeverf3(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
        proto_tree_add_text(tree, tvb, offset, NFS3_WRITEVERFSIZE,
@@ -2359,7 +2359,7 @@ dissect_writeverf3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 16 */
 int
-dissect_mode3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_mode3(tvbuff_t *tvb, int offset, proto_tree *tree,
        char* name)
 {
        guint32 mode3;
@@ -2445,7 +2445,7 @@ const value_string names_nfs_nfsstat3[] =
 
 /* RFC 1813, Page 16 */
 int
-dissect_nfsstat3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfsstat3(tvbuff_t *tvb, int offset,
        proto_tree *tree,guint32 *status)
 {
        guint32 nfsstat3;
@@ -2478,7 +2478,7 @@ const value_string names_nfs_ftype3[] =
 
 /* RFC 1813, Page 20 */
 int
-dissect_ftype3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_ftype3(tvbuff_t *tvb, int offset, proto_tree *tree,
        int hf, guint32* ftype3)
 {
        guint32 type;
@@ -2497,7 +2497,7 @@ dissect_ftype3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
 
 /* RFC 1813, Page 20 */
 int
-dissect_specdata3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_specdata3(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        guint32 specdata1;
@@ -2592,7 +2592,7 @@ dissect_nfs_fh3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 21 */
 int
-dissect_nfstime3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfstime3(tvbuff_t *tvb, int offset,
        proto_tree *tree, int hf_time, int hf_time_sec, int hf_time_nsec)
 {
        guint32 seconds;
@@ -2627,7 +2627,7 @@ dissect_nfstime3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 22 */
 int
-dissect_fattr3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_fattr3(tvbuff_t *tvb, int offset, proto_tree *tree,
        char* name)
 {
        proto_item* fattr3_item = NULL;
@@ -2641,26 +2641,26 @@ dissect_fattr3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
                fattr3_tree = proto_item_add_subtree(fattr3_item, ett_nfs_fattr3);
        }
 
-       offset = dissect_ftype3(tvb,offset,pinfo,fattr3_tree,hf_nfs_fattr3_type,&type);
-       offset = dissect_mode3(tvb,offset,pinfo,fattr3_tree,"mode");
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr3_tree, hf_nfs_fattr3_nlink,
+       offset = dissect_ftype3(tvb,offset,fattr3_tree,hf_nfs_fattr3_type,&type);
+       offset = dissect_mode3(tvb,offset,fattr3_tree,"mode");
+       offset = dissect_rpc_uint32(tvb, fattr3_tree, hf_nfs_fattr3_nlink,
                offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr3_tree, hf_nfs_fattr3_uid,
+       offset = dissect_rpc_uint32(tvb, fattr3_tree, hf_nfs_fattr3_uid,
                offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, fattr3_tree, hf_nfs_fattr3_gid,
+       offset = dissect_rpc_uint32(tvb, fattr3_tree, hf_nfs_fattr3_gid,
                offset);
-       offset = dissect_rpc_uint64(tvb, pinfo, fattr3_tree, hf_nfs_fattr3_size, 
+       offset = dissect_rpc_uint64(tvb, fattr3_tree, hf_nfs_fattr3_size, 
                offset);
-       offset = dissect_rpc_uint64(tvb, pinfo, fattr3_tree, hf_nfs_fattr3_used,
+       offset = dissect_rpc_uint64(tvb, fattr3_tree, hf_nfs_fattr3_used,
                offset);
-       offset = dissect_specdata3(tvb,offset,pinfo,fattr3_tree,"rdev");
-       offset = dissect_rpc_uint64(tvb, pinfo, fattr3_tree, hf_nfs_fattr3_fsid,
+       offset = dissect_specdata3(tvb,offset,fattr3_tree,"rdev");
+       offset = dissect_rpc_uint64(tvb, fattr3_tree, hf_nfs_fattr3_fsid,
                offset);
-       offset = dissect_rpc_uint64(tvb, pinfo, fattr3_tree, hf_nfs_fattr3_fileid,
+       offset = dissect_rpc_uint64(tvb, fattr3_tree, hf_nfs_fattr3_fileid,
                offset);
-       offset = dissect_nfstime3 (tvb,offset,pinfo,fattr3_tree,hf_nfs_atime,hf_nfs_atime_sec,hf_nfs_atime_nsec);
-       offset = dissect_nfstime3 (tvb,offset,pinfo,fattr3_tree,hf_nfs_mtime,hf_nfs_mtime_sec,hf_nfs_mtime_nsec);
-       offset = dissect_nfstime3 (tvb,offset,pinfo,fattr3_tree,hf_nfs_ctime,hf_nfs_ctime_sec,hf_nfs_ctime_nsec);
+       offset = dissect_nfstime3 (tvb,offset,fattr3_tree,hf_nfs_atime,hf_nfs_atime_sec,hf_nfs_atime_nsec);
+       offset = dissect_nfstime3 (tvb,offset,fattr3_tree,hf_nfs_mtime,hf_nfs_mtime_sec,hf_nfs_mtime_nsec);
+       offset = dissect_nfstime3 (tvb,offset,fattr3_tree,hf_nfs_ctime,hf_nfs_ctime_sec,hf_nfs_ctime_nsec);
 
        /* now we know, that fattr3 is shorter */
        if (fattr3_item) {
@@ -2681,7 +2681,7 @@ const value_string value_follows[] =
 
 /* RFC 1813, Page 23 */
 int
-dissect_post_op_attr(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_post_op_attr(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* post_op_attr_item = NULL;
@@ -2703,7 +2703,7 @@ dissect_post_op_attr(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
        switch (attributes_follow) {
                case TRUE:
-                       offset = dissect_fattr3(tvb, offset, pinfo, post_op_attr_tree,
+                       offset = dissect_fattr3(tvb, offset, post_op_attr_tree,
                                        "attributes");
                break;
                case FALSE:
@@ -2722,7 +2722,7 @@ dissect_post_op_attr(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 24 */
 int
-dissect_wcc_attr(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_wcc_attr(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* wcc_attr_item = NULL;
@@ -2736,10 +2736,10 @@ dissect_wcc_attr(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        ett_nfs_wcc_attr);
        }
 
-       offset = dissect_rpc_uint64(tvb, pinfo, wcc_attr_tree, hf_nfs_wcc_attr_size, 
+       offset = dissect_rpc_uint64(tvb, wcc_attr_tree, hf_nfs_wcc_attr_size, 
                offset);
-       offset = dissect_nfstime3(tvb, offset, pinfo, wcc_attr_tree, hf_nfs_mtime, hf_nfs_mtime_sec, hf_nfs_mtime_nsec);
-       offset = dissect_nfstime3(tvb, offset, pinfo, wcc_attr_tree, hf_nfs_ctime, hf_nfs_ctime_sec, hf_nfs_ctime_nsec);
+       offset = dissect_nfstime3(tvb, offset, wcc_attr_tree, hf_nfs_mtime, hf_nfs_mtime_sec, hf_nfs_mtime_nsec);
+       offset = dissect_nfstime3(tvb, offset, wcc_attr_tree, hf_nfs_ctime, hf_nfs_ctime_sec, hf_nfs_ctime_nsec);
        /* now we know, that wcc_attr_tree is shorter */
        if (wcc_attr_item) {
                proto_item_set_len(wcc_attr_item, offset - old_offset);
@@ -2751,7 +2751,7 @@ dissect_wcc_attr(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 24 */
 int
-dissect_pre_op_attr(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_pre_op_attr(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* pre_op_attr_item = NULL;
@@ -2773,7 +2773,7 @@ dissect_pre_op_attr(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
        switch (attributes_follow) {
                case TRUE:
-                       offset = dissect_wcc_attr(tvb, offset, pinfo, pre_op_attr_tree,
+                       offset = dissect_wcc_attr(tvb, offset, pre_op_attr_tree,
                                        "attributes");
                break;
                case FALSE:
@@ -2792,7 +2792,7 @@ dissect_pre_op_attr(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 24 */
 int
-dissect_wcc_data(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_wcc_data(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* wcc_data_item = NULL;
@@ -2806,8 +2806,8 @@ dissect_wcc_data(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        ett_nfs_wcc_data);
        }
 
-       offset = dissect_pre_op_attr (tvb, offset, pinfo, wcc_data_tree, "before");
-       offset = dissect_post_op_attr(tvb, offset, pinfo, wcc_data_tree, "after" );
+       offset = dissect_pre_op_attr (tvb, offset, wcc_data_tree, "before");
+       offset = dissect_post_op_attr(tvb, offset, wcc_data_tree, "after" );
 
        /* now we know, that wcc_data is shorter */
        if (wcc_data_item) {
@@ -2861,7 +2861,7 @@ dissect_post_op_fh3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 25 */
 int
-dissect_set_mode3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_set_mode3(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* set_mode3_item = NULL;
@@ -2888,7 +2888,7 @@ dissect_set_mode3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        switch (set_it) {
                case 1:
-                       offset = dissect_mode3(tvb, offset, pinfo, set_mode3_tree,
+                       offset = dissect_mode3(tvb, offset, set_mode3_tree,
                                        "mode");
                break;
                default:
@@ -2907,7 +2907,7 @@ dissect_set_mode3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 26 */
 int
-dissect_set_uid3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_set_uid3(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* set_uid3_item = NULL;
@@ -2934,7 +2934,7 @@ dissect_set_uid3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        switch (set_it) {
                case 1:
-                       offset = dissect_rpc_uint32(tvb, pinfo, set_uid3_tree,
+                       offset = dissect_rpc_uint32(tvb, set_uid3_tree,
                                                                 hf_nfs_uid3, offset);
                break;
                default:
@@ -2953,7 +2953,7 @@ dissect_set_uid3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 26 */
 int
-dissect_set_gid3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_set_gid3(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* set_gid3_item = NULL;
@@ -2980,7 +2980,7 @@ dissect_set_gid3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        switch (set_it) {
                case 1:
-                       offset = dissect_rpc_uint32(tvb, pinfo, set_gid3_tree, 
+                       offset = dissect_rpc_uint32(tvb, set_gid3_tree, 
                                hf_nfs_gid3, offset);
                break;
                default:
@@ -2999,7 +2999,7 @@ dissect_set_gid3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 26 */
 int
-dissect_set_size3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_set_size3(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* set_size3_item = NULL;
@@ -3026,7 +3026,7 @@ dissect_set_size3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        switch (set_it) {
                case 1:
-                       offset = dissect_rpc_uint64(tvb, pinfo, set_size3_tree,
+                       offset = dissect_rpc_uint64(tvb, set_size3_tree,
                                hf_nfs_set_size3_size, offset);
                break;
                default:
@@ -3059,7 +3059,7 @@ const value_string time_how[] =
 
 /* RFC 1813, Page 26 */
 int
-dissect_set_atime(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_set_atime(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* set_atime_item = NULL;
@@ -3087,7 +3087,7 @@ dissect_set_atime(tvbuff_t *tvb, int offset, packet_info *pinfo,
        switch (set_it) {
                case SET_TO_CLIENT_TIME:
                        if (set_atime_item) {
-                               offset = dissect_nfstime3(tvb, offset, pinfo, set_atime_tree,
+                               offset = dissect_nfstime3(tvb, offset, set_atime_tree,
                                        hf_nfs_atime, hf_nfs_atime_sec, hf_nfs_atime_nsec);
                        }
                break;
@@ -3107,7 +3107,7 @@ dissect_set_atime(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 26 */
 int
-dissect_set_mtime(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_set_mtime(tvbuff_t *tvb, int offset,
        proto_tree *tree, char* name)
 {
        proto_item* set_mtime_item = NULL;
@@ -3135,7 +3135,7 @@ dissect_set_mtime(tvbuff_t *tvb, int offset, packet_info *pinfo,
        switch (set_it) {
                case SET_TO_CLIENT_TIME:
                        if (set_mtime_item) {
-                               offset = dissect_nfstime3(tvb, offset, pinfo, set_mtime_tree,
+                               offset = dissect_nfstime3(tvb, offset, set_mtime_tree,
                                        hf_nfs_atime, hf_nfs_atime_sec, hf_nfs_atime_nsec);
                        }
                break;
@@ -3155,7 +3155,7 @@ dissect_set_mtime(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 25..27 */
 int
-dissect_sattr3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_sattr3(tvbuff_t *tvb, int offset, proto_tree *tree,
        char* name)
 {
        proto_item* sattr3_item = NULL;
@@ -3168,12 +3168,12 @@ dissect_sattr3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
                sattr3_tree = proto_item_add_subtree(sattr3_item, ett_nfs_sattr3);
        }
 
-       offset = dissect_set_mode3(tvb, offset, pinfo, sattr3_tree, "mode");
-       offset = dissect_set_uid3 (tvb, offset, pinfo, sattr3_tree, "uid");
-       offset = dissect_set_gid3 (tvb, offset, pinfo, sattr3_tree, "gid");
-       offset = dissect_set_size3(tvb, offset, pinfo, sattr3_tree, "size");
-       offset = dissect_set_atime(tvb, offset, pinfo, sattr3_tree, "atime");
-       offset = dissect_set_mtime(tvb, offset, pinfo, sattr3_tree, "mtime");
+       offset = dissect_set_mode3(tvb, offset, sattr3_tree, "mode");
+       offset = dissect_set_uid3 (tvb, offset, sattr3_tree, "uid");
+       offset = dissect_set_gid3 (tvb, offset, sattr3_tree, "gid");
+       offset = dissect_set_size3(tvb, offset, sattr3_tree, "size");
+       offset = dissect_set_atime(tvb, offset, sattr3_tree, "atime");
+       offset = dissect_set_mtime(tvb, offset, sattr3_tree, "mtime");
 
        /* now we know, that sattr3 is shorter */
        if (sattr3_item) {
@@ -3207,7 +3207,7 @@ dissect_diropargs3(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset = dissect_nfs_fh3(tvb, offset, pinfo, diropargs3_tree, "dir");
        name_offset=offset+4;
        name_len=tvb_get_ntohl(tvb, offset);
-       offset = dissect_filename3(tvb, offset, pinfo, diropargs3_tree, 
+       offset = dissect_filename3(tvb, offset, diropargs3_tree, 
                hf_nfs_name, NULL);
 
        /* are we snooping fh to filenames ?*/
@@ -3249,7 +3249,7 @@ dissect_nfs3_diropargs3_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 40 */
 int
-dissect_access(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree,
+dissect_access(tvbuff_t *tvb, int offset, proto_tree *tree,
        char* name)
 {
        guint32 access;
@@ -3295,20 +3295,6 @@ dissect_nfs3_nfs_fh3_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 
-/* generic NFS3 reply dissector */
-int
-dissect_nfs3_any_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, 
-       proto_tree* tree)
-{
-       guint32 status;
-
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
-
-       return offset;
-
-}
-
-
 /* RFC 1813, Page 32,33 */
 int
 dissect_nfs3_getattr_call(tvbuff_t *tvb, int offset, packet_info *pinfo, 
@@ -3321,15 +3307,15 @@ dissect_nfs3_getattr_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 32,33 */
 int
-dissect_nfs3_getattr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfs3_getattr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_fattr3(tvb, offset, pinfo, tree, "obj_attributes");
+                       offset = dissect_fattr3(tvb, offset, tree, "obj_attributes");
                break;
                default:
                        /* void */
@@ -3342,7 +3328,7 @@ dissect_nfs3_getattr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 33 */
 int
-dissect_sattrguard3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_sattrguard3(tvbuff_t *tvb, int offset,
        proto_tree* tree, char *name)
 {
        proto_item* sattrguard3_item = NULL;
@@ -3369,7 +3355,7 @@ dissect_sattrguard3(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        switch (check) {
                case TRUE:
-                       offset = dissect_nfstime3(tvb, offset, pinfo, sattrguard3_tree,
+                       offset = dissect_nfstime3(tvb, offset, sattrguard3_tree,
                                        hf_nfs_ctime, hf_nfs_ctime_sec, hf_nfs_ctime_nsec);
                break;
                case FALSE:
@@ -3392,26 +3378,26 @@ dissect_nfs3_setattr_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_nfs_fh3    (tvb, offset, pinfo, tree, "object");
-       offset = dissect_sattr3     (tvb, offset, pinfo, tree, "new_attributes");
-       offset = dissect_sattrguard3(tvb, offset, pinfo, tree, "guard");
+       offset = dissect_sattr3     (tvb, offset,        tree, "new_attributes");
+       offset = dissect_sattrguard3(tvb, offset,        tree, "guard");
        return offset;
 }
 
 
 /* RFC 1813, Page 33..36 */
 int
-dissect_nfs3_setattr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_setattr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "obj_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "obj_wcc");
                break;
                default:
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "obj_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "obj_wcc");
                break;
        }
                
@@ -3436,17 +3422,17 @@ dissect_nfs3_lookup_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
                        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "object");
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "dir_attributes");
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "dir_attributes");
                break;
        }
@@ -3461,7 +3447,7 @@ dissect_nfs3_access_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "object");
-       offset = dissect_access (tvb, offset, pinfo, tree, "access");
+       offset = dissect_access (tvb, offset,        tree, "access");
 
        return offset;
 }
@@ -3469,20 +3455,20 @@ dissect_nfs3_access_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 40..43 */
 int
-dissect_nfs3_access_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_access_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
-                       offset = dissect_access(tvb, offset, pinfo, tree, "access");
+                       offset = dissect_access(tvb, offset, tree, "access");
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
                break;
        }
@@ -3493,21 +3479,21 @@ dissect_nfs3_access_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 44,45 */
 int
-dissect_nfs3_readlink_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_readlink_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "symlink_attributes");
-                       offset = dissect_nfspath3(tvb, offset, pinfo, tree, 
+                       offset = dissect_nfspath3(tvb, offset, tree, 
                                hf_nfs_readlink_data);
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "symlink_attributes");
                break;
        }
@@ -3522,8 +3508,8 @@ dissect_nfs3_read_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "file");
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_offset3, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3, offset);
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_offset3, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3, offset);
 
        return offset;
 }
@@ -3531,24 +3517,24 @@ dissect_nfs3_read_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 46..48 */
 int
-dissect_nfs3_read_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_read_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "file_attributes");
-                       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3, 
+                       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3, 
                                offset);
-                       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nfs_read_eof, 
+                       offset = dissect_rpc_bool(tvb, tree, hf_nfs_read_eof, 
                                offset);
-                       offset = dissect_nfsdata(tvb, offset, pinfo, tree, hf_nfs_data);
+                       offset = dissect_nfsdata(tvb, offset, tree, hf_nfs_data);
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "file_attributes");
                break;
        }
@@ -3568,7 +3554,7 @@ static const value_string names_stable_how[] = {
 
 /* RFC 1813, Page 49 */
 int
-dissect_stable_how(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_stable_how(tvbuff_t *tvb, int offset,
        proto_tree* tree, int hfindex)
 {
        guint32 stable_how;
@@ -3590,10 +3576,10 @@ dissect_nfs3_write_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_nfs_fh3   (tvb, offset, pinfo, tree, "file");
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_offset3, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3, offset);
-       offset = dissect_stable_how(tvb, offset, pinfo, tree, hf_nfs_write_stable);
-       offset = dissect_nfsdata   (tvb, offset, pinfo, tree, hf_nfs_data);
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_offset3, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3, offset);
+       offset = dissect_stable_how(tvb, offset, tree, hf_nfs_write_stable);
+       offset = dissect_nfsdata   (tvb, offset, tree, hf_nfs_data);
 
        return offset;
 }
@@ -3601,23 +3587,23 @@ dissect_nfs3_write_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 49..54 */
 int
-dissect_nfs3_write_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_write_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_wcc_data  (tvb, offset, pinfo, tree, "file_wcc");
-                       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3, 
+                       offset = dissect_wcc_data  (tvb, offset, tree, "file_wcc");
+                       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3, 
                                offset);
-                       offset = dissect_stable_how(tvb, offset, pinfo, tree,
+                       offset = dissect_stable_how(tvb, offset, tree,
                                hf_nfs_write_committed);
-                       offset = dissect_writeverf3(tvb, offset, pinfo, tree);
+                       offset = dissect_writeverf3(tvb, offset, tree);
                break;
                default:
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "file_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "file_wcc");
                break;
        }
                
@@ -3636,7 +3622,7 @@ static const value_string names_createmode3[] = {
 
 /* RFC 1813, Page 54 */
 int
-dissect_createmode3(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_createmode3(tvbuff_t *tvb, int offset,
        proto_tree* tree, guint32* mode)
 {
        guint32 mode_value;
@@ -3661,14 +3647,14 @@ dissect_nfs3_create_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        guint32 mode;
 
        offset = dissect_diropargs3 (tvb, offset, pinfo, tree, "where");
-       offset = dissect_createmode3(tvb, offset, pinfo, tree, &mode);
+       offset = dissect_createmode3(tvb, offset, tree, &mode);
        switch (mode) {
                case UNCHECKED:
                case GUARDED:
-                       offset = dissect_sattr3(tvb, offset, pinfo, tree, "obj_attributes");
+                       offset = dissect_sattr3(tvb, offset, tree, "obj_attributes");
                break;
                case EXCLUSIVE:
-                       offset = dissect_createverf3(tvb, offset, pinfo, tree);
+                       offset = dissect_createverf3(tvb, offset, tree);
                break;
        }
        
@@ -3683,16 +3669,16 @@ dissect_nfs3_create_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
                        offset = dissect_post_op_fh3 (tvb, offset, pinfo, tree, "obj");
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "dir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "dir_wcc");
                break;
                default:
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "dir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "dir_wcc");
                break;
        }
                
@@ -3706,7 +3692,7 @@ dissect_nfs3_mkdir_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_diropargs3(tvb, offset, pinfo, tree, "where");
-       offset = dissect_sattr3    (tvb, offset, pinfo, tree, "attributes");
+       offset = dissect_sattr3    (tvb, offset, tree, "attributes");
        
        return offset;
 }
@@ -3718,8 +3704,8 @@ dissect_nfs3_symlink_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_diropargs3(tvb, offset, pinfo, tree, "where");
-       offset = dissect_sattr3    (tvb, offset, pinfo, tree, "symlink_attributes");
-       offset = dissect_nfspath3  (tvb, offset, pinfo, tree, hf_nfs_symlink_to);
+       offset = dissect_sattr3    (tvb, offset,        tree, "symlink_attributes");
+       offset = dissect_nfspath3  (tvb, offset,        tree, hf_nfs_symlink_to);
        
        return offset;
 }
@@ -3733,16 +3719,16 @@ dissect_nfs3_mknod_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        guint32 type;
 
        offset = dissect_diropargs3(tvb, offset, pinfo, tree, "where");
-       offset = dissect_ftype3(tvb, offset, pinfo, tree, hf_nfs_ftype3, &type);
+       offset = dissect_ftype3(tvb, offset, tree, hf_nfs_ftype3, &type);
        switch (type) {
                case NF3CHR:
                case NF3BLK:
-                       offset = dissect_sattr3(tvb, offset, pinfo, tree, "dev_attributes");
-                       offset = dissect_specdata3(tvb, offset, pinfo, tree, "spec");
+                       offset = dissect_sattr3(tvb, offset, tree, "dev_attributes");
+                       offset = dissect_specdata3(tvb, offset, tree, "spec");
                break;
                case NF3SOCK:
                case NF3FIFO:
-                       offset = dissect_sattr3(tvb, offset, pinfo, tree, "pipe_attributes");
+                       offset = dissect_sattr3(tvb, offset, tree, "pipe_attributes");
                break;
                default:
                        /* nothing to do */
@@ -3755,18 +3741,18 @@ dissect_nfs3_mknod_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 67..69 */
 int
-dissect_nfs3_remove_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_remove_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_wcc_data    (tvb, offset, pinfo, tree, "dir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "dir_wcc");
                break;
                default:
-                       offset = dissect_wcc_data    (tvb, offset, pinfo, tree, "dir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "dir_wcc");
                break;
        }
                
@@ -3788,20 +3774,20 @@ dissect_nfs3_rename_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 71..74 */
 int
-dissect_nfs3_rename_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_rename_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "fromdir_wcc");
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "todir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "fromdir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "todir_wcc");
                break;
                default:
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "fromdir_wcc");
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "todir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "fromdir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "todir_wcc");
                break;
        }
                
@@ -3823,22 +3809,22 @@ dissect_nfs3_link_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 74..76 */
 int
-dissect_nfs3_link_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_link_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "file_attributes");
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "linkdir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "linkdir_wcc");
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "file_attributes");
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "linkdir_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "linkdir_wcc");
                break;
        }
                
@@ -3852,9 +3838,9 @@ dissect_nfs3_readdir_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_nfs_fh3    (tvb, offset, pinfo, tree, "dir");
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_cookie3, offset);
-       offset = dissect_cookieverf3(tvb, offset, pinfo, tree);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3, offset);
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_cookie3, offset);
+       offset = dissect_cookieverf3(tvb, offset, tree);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3, offset);
        
        return offset;
 }
@@ -3862,7 +3848,7 @@ dissect_nfs3_readdir_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 76..80 */
 int
-dissect_entry3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree)
+dissect_entry3(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree* tree)
 {
        proto_item* entry_item = NULL;
        proto_tree* entry_tree = NULL;
@@ -3875,16 +3861,16 @@ dissect_entry3(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree* tree)
                entry_tree = proto_item_add_subtree(entry_item, ett_nfs_readdir_entry);
        }
 
-       offset = dissect_rpc_uint64(tvb, pinfo, entry_tree, hf_nfs_readdir_entry3_fileid,
+       offset = dissect_rpc_uint64(tvb, entry_tree, hf_nfs_readdir_entry3_fileid,
                offset);
 
-       offset = dissect_filename3(tvb, offset, pinfo, entry_tree,
+       offset = dissect_filename3(tvb, offset, entry_tree,
                hf_nfs_readdir_entry3_name, &name);
        if (entry_item)
                proto_item_set_text(entry_item, "Entry: name %s", name);
        g_free(name);
 
-       offset = dissect_rpc_uint64(tvb, pinfo, entry_tree, hf_nfs_readdir_entry3_cookie, 
+       offset = dissect_rpc_uint64(tvb, entry_tree, hf_nfs_readdir_entry3_cookie, 
                offset);
 
        /* now we know, that a readdir entry is shorter */
@@ -3904,12 +3890,12 @@ dissect_nfs3_readdir_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        guint32 status;
        guint32 eof_value;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "dir_attributes");
-                       offset = dissect_cookieverf3(tvb, offset, pinfo, tree);
+                       offset = dissect_cookieverf3(tvb, offset, tree);
                        offset = dissect_rpc_list(tvb, pinfo, tree, offset, 
                                dissect_entry3);
                        eof_value = tvb_get_ntohl(tvb, offset+0);
@@ -3919,7 +3905,7 @@ dissect_nfs3_readdir_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        offset += 4;
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "dir_attributes");
                break;
        }
@@ -3934,11 +3920,11 @@ dissect_nfs3_readdirplus_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_nfs_fh3    (tvb, offset, pinfo, tree, "dir");
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_cookie3, offset);
-       offset = dissect_cookieverf3(tvb, offset, pinfo, tree);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3_dircount,
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_cookie3, offset);
+       offset = dissect_cookieverf3(tvb, offset, tree);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3_dircount,
                offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3_maxcount,
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3_maxcount,
                offset);
        
        return offset;
@@ -3961,19 +3947,19 @@ dissect_entryplus3(tvbuff_t *tvb, int offset, packet_info *pinfo,
                entry_tree = proto_item_add_subtree(entry_item, ett_nfs_readdir_entry);
        }
 
-       offset = dissect_rpc_uint64(tvb, pinfo, entry_tree,
+       offset = dissect_rpc_uint64(tvb, entry_tree,
                hf_nfs_readdirplus_entry_fileid, offset);
 
-       offset = dissect_filename3(tvb, offset, pinfo, entry_tree,
+       offset = dissect_filename3(tvb, offset, entry_tree,
                hf_nfs_readdirplus_entry_name, &name);
        if (entry_item)
                proto_item_set_text(entry_item, "Entry: name %s", name);
        g_free(name);
 
-       offset = dissect_rpc_uint64(tvb, pinfo, entry_tree, hf_nfs_readdirplus_entry_cookie,
+       offset = dissect_rpc_uint64(tvb, entry_tree, hf_nfs_readdirplus_entry_cookie,
                offset);
 
-       offset = dissect_post_op_attr(tvb, offset, pinfo, entry_tree, 
+       offset = dissect_post_op_attr(tvb, offset, entry_tree, 
                "name_attributes");
        offset = dissect_post_op_fh3(tvb, offset, pinfo, entry_tree, "name_handle");
 
@@ -3994,12 +3980,12 @@ dissect_nfs3_readdirplus_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        guint32 status;
        guint32 eof_value;
 
-       offset = dissect_stat(tvb, offset, pinfo, tree, &status);
+       offset = dissect_stat(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "dir_attributes");
-                       offset = dissect_cookieverf3(tvb, offset, pinfo, tree);
+                       offset = dissect_cookieverf3(tvb, offset, tree);
                        offset = dissect_rpc_list(tvb, pinfo, tree, offset, 
                                dissect_entryplus3);
                        eof_value = tvb_get_ntohl(tvb, offset+0);
@@ -4009,7 +3995,7 @@ dissect_nfs3_readdirplus_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        offset += 4;
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "dir_attributes");
                break;
        }
@@ -4020,28 +4006,28 @@ dissect_nfs3_readdirplus_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 84..86 */
 int
-dissect_nfs3_fsstat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_fsstat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
        guint32 invarsec;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
-                       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_fsstat3_resok_tbytes,
+                       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_fsstat3_resok_tbytes,
                                offset);
-                       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_fsstat3_resok_fbytes,
+                       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_fsstat3_resok_fbytes,
                                offset);
-                       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_fsstat3_resok_abytes,
+                       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_fsstat3_resok_abytes,
                                offset);
-                       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_fsstat3_resok_tfiles,
+                       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_fsstat3_resok_tfiles,
                                offset);
-                       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_fsstat3_resok_ffiles,
+                       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_fsstat3_resok_ffiles,
                                offset);
-                       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_fsstat3_resok_afiles,
+                       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_fsstat3_resok_afiles,
                                offset);
                        invarsec = tvb_get_ntohl(tvb, offset + 0);
                        if (tree)
@@ -4050,7 +4036,7 @@ dissect_nfs3_fsstat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        offset += 4;
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
                break;
        }
@@ -4067,7 +4053,7 @@ dissect_nfs3_fsstat_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 86..90 */
 int
-dissect_nfs3_fsinfo_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_fsinfo_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
@@ -4082,10 +4068,10 @@ dissect_nfs3_fsinfo_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_item*     properties_item = NULL;
        proto_tree*     properties_tree = NULL;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
                        rtmax = tvb_get_ntohl(tvb, offset+0);
                        if (tree)
@@ -4123,9 +4109,9 @@ dissect_nfs3_fsinfo_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                offset+0, 4, dtpref);
                        offset += 4;
 
-                       offset = dissect_rpc_uint64(tvb, pinfo, tree, 
+                       offset = dissect_rpc_uint64(tvb, tree, 
                                hf_nfs_fsinfo_maxfilesize, offset);
-                       offset = dissect_nfstime3(tvb, offset, pinfo, tree, hf_nfs_dtime, hf_nfs_dtime_sec, hf_nfs_dtime_nsec);
+                       offset = dissect_nfstime3(tvb, offset, tree, hf_nfs_dtime, hf_nfs_dtime_sec, hf_nfs_dtime_nsec);
                        properties = tvb_get_ntohl(tvb, offset+0);
                        if (tree) {
                                properties_item = proto_tree_add_uint(tree,
@@ -4167,7 +4153,7 @@ dissect_nfs3_fsinfo_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        offset += 4;
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
                break;
        }
@@ -4178,17 +4164,17 @@ dissect_nfs3_fsinfo_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* RFC 1813, Page 90..92 */
 int
-dissect_nfs3_pathconf_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_pathconf_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
        guint32 linkmax;
        guint32 name_max;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
                        linkmax = tvb_get_ntohl(tvb, offset + 0);
                        if (tree)
@@ -4200,17 +4186,17 @@ dissect_nfs3_pathconf_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                proto_tree_add_uint(tree, hf_nfs_pathconf_name_max, tvb,
                                offset+0, 4, name_max);
                        offset += 4;
-                       offset = dissect_rpc_bool(tvb, pinfo, tree, 
+                       offset = dissect_rpc_bool(tvb, tree, 
                                hf_nfs_pathconf_no_trunc, offset);
-                       offset = dissect_rpc_bool(tvb, pinfo, tree, 
+                       offset = dissect_rpc_bool(tvb, tree, 
                                hf_nfs_pathconf_chown_restricted, offset);
-                       offset = dissect_rpc_bool(tvb, pinfo, tree, 
+                       offset = dissect_rpc_bool(tvb, tree, 
                                hf_nfs_pathconf_case_insensitive, offset);
-                       offset = dissect_rpc_bool(tvb, pinfo, tree, 
+                       offset = dissect_rpc_bool(tvb, tree, 
                                hf_nfs_pathconf_case_preserving, offset);
                break;
                default:
-                       offset = dissect_post_op_attr(tvb, offset, pinfo, tree, 
+                       offset = dissect_post_op_attr(tvb, offset, tree, 
                                "obj_attributes");
                break;
        }
@@ -4225,27 +4211,27 @@ dissect_nfs3_commit_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree* tree)
 {
        offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "file");
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_offset3, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_count3, offset);
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_offset3, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_count3, offset);
        return offset;
 }
 
 
 /* RFC 1813, Page 92..95 */
 int
-dissect_nfs3_commit_reply(tvbuff_t *tvb, int offset, packet_info *pinfo
+dissect_nfs3_commit_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree* tree)
 {
        guint32 status;
 
-       offset = dissect_nfsstat3(tvb, offset, pinfo, tree, &status);
+       offset = dissect_nfsstat3(tvb, offset, tree, &status);
        switch (status) {
                case 0:
-                       offset = dissect_wcc_data  (tvb, offset, pinfo, tree, "file_wcc");
-                       offset = dissect_writeverf3(tvb, offset, pinfo, tree);
+                       offset = dissect_wcc_data  (tvb, offset, tree, "file_wcc");
+                       offset = dissect_writeverf3(tvb, offset, tree);
                break;
                default:
-                       offset = dissect_wcc_data(tvb, offset, pinfo, tree, "file_wcc");
+                       offset = dissect_wcc_data(tvb, offset, tree, "file_wcc");
                break;
        }
                
@@ -4257,36 +4243,38 @@ dissect_nfs3_commit_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 /**********************************************************/
 
 int
-dissect_nfs_utf8string(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_utf8string(tvbuff_t *tvb, int offset,
        proto_tree *tree, int hf, char **string_ret)
 {
        /* TODO: this needs to be fixed */
-       return dissect_rpc_string(tvb, pinfo, tree, hf, offset, string_ret);
+       return dissect_rpc_string(tvb, tree, hf, offset, string_ret);
 }
 
 int
-dissect_nfs_linktext4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_linktext4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       return dissect_nfs_utf8string(tvb, offset, pinfo, tree, hf_nfs_linktext4, 
+       /* TODO: use parameter "name" */
+       return dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_linktext4, 
                NULL);
 }
 
 int
-dissect_nfs_specdata4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_specdata4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_specdata1, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_specdata2, offset);
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_specdata1, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_specdata2, offset);
 
        return offset;
 }
 
 int
-dissect_nfs_clientid4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_clientid4(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_clientid4, offset);
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_clientid4, offset);
 
        return offset;
 }
@@ -4305,37 +4293,42 @@ static const value_string names_ftype4[] = {
 };
 
 int
-dissect_nfs_component4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_component4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       return dissect_nfs_utf8string(tvb, offset, pinfo, tree, hf_nfs_component4, 
+       /* TODO: use parameter "name" */
+       return dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_component4, 
                NULL);
 }
 
+/* TODO: this function is not referenced at all. Remove it? */
 int
-dissect_nfs_reclaim4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_reclaim4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_reclaim4, offset);
+       /* TODO: use parameter "name */
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_reclaim4, offset);
        return offset;
 }
 
 int
-dissect_nfs_length4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_length4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_length4, offset);
+       /* TODO: use parameter "name */
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_length4, offset);
        return offset;
 }
 
 int
-dissect_nfs_opaque4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_opaque4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name);
 
 int
-dissect_nfs_lock_owner4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_lock_owner4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
+       /* TODO: use paramter "name" */
        proto_tree *newftree = NULL;
        proto_item *fitem = NULL;
 
@@ -4345,9 +4338,9 @@ dissect_nfs_lock_owner4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                newftree = proto_item_add_subtree(fitem, ett_nfs_lock_owner4);
 
                if (newftree) {
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_clientid4,
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_clientid4,
                                offset);
-                       offset = dissect_nfs_opaque4(tvb, offset, pinfo, newftree, "Owner");
+                       offset = dissect_nfs_opaque4(tvb, offset, newftree, "Owner");
                }
        }
 
@@ -4355,9 +4348,10 @@ dissect_nfs_lock_owner4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_pathname4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_pathname4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
+       /* TODO: use paramter "name" */
        guint comp_count, i;
        proto_item *fitem = NULL;
        proto_tree *newftree = NULL;
@@ -4372,7 +4366,7 @@ dissect_nfs_pathname4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
                if (newftree) {
                        for (i=0; i<comp_count; i++)
-                               offset=dissect_nfs_component4(tvb, offset, pinfo, newftree, "comp");
+                               offset=dissect_nfs_component4(tvb, offset, newftree, "comp");
                }
        }
 
@@ -4380,20 +4374,22 @@ dissect_nfs_pathname4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_changeid4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_changeid4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_changeid4, offset);
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_changeid4, offset);
        return offset;
 }
 
 int
-dissect_nfs_nfstime4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_nfstime4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_nfstime4_seconds, 
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_nfstime4_seconds, 
                offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_nfstime4_nseconds,
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_nfstime4_nseconds,
                offset);
        return offset;
 }
@@ -4407,8 +4403,8 @@ static const value_string names_time_how4[] = {
 };
 
 int
-dissect_nfs_settime4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_settime4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
        guint32 set_it;
 
@@ -4418,13 +4414,13 @@ dissect_nfs_settime4(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset += 4;
 
        if (set_it == SET_TO_CLIENT_TIME4)
-               offset = dissect_nfs_nfstime4(tvb, offset, pinfo, tree, NULL);
+               offset = dissect_nfs_nfstime4(tvb, offset, tree, NULL);
        
        return offset;
 }
 
 int
-dissect_nfs_fsid4(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfs_fsid4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
        proto_tree *newftree = NULL;
@@ -4438,39 +4434,42 @@ dissect_nfs_fsid4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        if (newftree == NULL) return offset;
 
-       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_fsid4_major,
+       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_fsid4_major,
                offset);
-       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_fsid4_minor,
+       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_fsid4_minor,
                offset);
 
        return offset;
 }
 
 int
-dissect_nfs_acetype4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_acetype4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_acetype4, offset);
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_acetype4, offset);
        return offset;
 }
 
 int
-dissect_nfs_aceflag4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_aceflag4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_aceflag4, offset);
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_aceflag4, offset);
        return offset;
 }
 
 int
-dissect_nfs_acemask4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_acemask4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       return dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_acemask4, offset);
+       /* TODO: use parameter "name" */
+       return dissect_rpc_uint32(tvb, tree, hf_nfs_acemask4, offset);
 }
 
 int
-dissect_nfs_nfsace4(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfs_nfsace4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
        proto_tree *newftree = NULL;
@@ -4486,16 +4485,16 @@ dissect_nfs_nfsace4(tvbuff_t *tvb, int offset, packet_info *pinfo,
        if (newftree == NULL) return offset;
 
        nextentry = tvb_get_ntohl(tvb, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, newftree, hf_nfs_data_follows,
+       offset = dissect_rpc_bool(tvb, newftree, hf_nfs_data_follows,
                offset);
 
        while (nextentry)
        {
-               offset = dissect_nfs_acetype4(tvb, offset, pinfo, newftree, "type");
-               offset = dissect_nfs_aceflag4(tvb, offset, pinfo, newftree, "flag");
-               offset = dissect_nfs_acemask4(tvb, offset, pinfo, newftree, 
+               offset = dissect_nfs_acetype4(tvb, offset, newftree, "type");
+               offset = dissect_nfs_aceflag4(tvb, offset, newftree, "flag");
+               offset = dissect_nfs_acemask4(tvb, offset, newftree, 
                        "access_mask");
-               offset = dissect_nfs_utf8string(tvb, offset, pinfo, newftree, 
+               offset = dissect_nfs_utf8string(tvb, offset, newftree, 
                        hf_nfs_who, NULL);
                nextentry = tvb_get_ntohl(tvb, offset);
                offset += 4;
@@ -4512,7 +4511,7 @@ dissect_nfs_fh4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_fs_location4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_fs_location4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
        proto_tree *newftree = NULL;
@@ -4526,14 +4525,14 @@ dissect_nfs_fs_location4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        if (newftree == NULL) return offset;
 
-       offset = dissect_nfs_utf8string(tvb, offset, pinfo, tree, hf_nfs_server, 
+       offset = dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_server, 
                NULL);
 
        return offset;
 }
 
 int
-dissect_nfs_fs_locations4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_fs_locations4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
        proto_tree *newftree = NULL;
@@ -4548,15 +4547,15 @@ dissect_nfs_fs_locations4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        if (newftree == NULL) return offset;
 
-       offset = dissect_nfs_pathname4(tvb, offset, pinfo, newftree, "fs_root");
+       offset = dissect_nfs_pathname4(tvb, offset, newftree, "fs_root");
 
        nextentry = tvb_get_ntohl(tvb, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, newftree, hf_nfs_data_follows, 
+       offset = dissect_rpc_bool(tvb, newftree, hf_nfs_data_follows, 
                offset);
 
        while (nextentry)
        {
-               offset = dissect_nfs_fs_location4(tvb, offset, pinfo, newftree, 
+               offset = dissect_nfs_fs_location4(tvb, offset, newftree, 
                        "locations");
                nextentry = tvb_get_ntohl(tvb, offset);
                offset += 4;
@@ -4566,10 +4565,10 @@ dissect_nfs_fs_locations4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_mode4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_mode4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
-       return dissect_mode(tvb, offset, pinfo, tree, name);
+       return dissect_mode(tvb, offset, tree, name);
 }
 
 static const value_string nfs4_fattr4_fh_expire_type_names[] = {
@@ -4589,7 +4588,7 @@ static const value_string nfs4_fattr4_fh_expire_type_names[] = {
 
 int
 dissect_nfs_fattr4_fh_expire_type(tvbuff_t *tvb, int offset, 
-       packet_info *pinfo, proto_tree *tree)
+       proto_tree *tree)
 {
        guint32 expire_type;
        proto_item *expire_type_item = NULL;
@@ -4758,8 +4757,9 @@ static const value_string names_fattr4[] = {
 
 int
 dissect_nfs_attributes(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name, int type)
+       proto_tree *tree, char *name _U_, int type)
 {
+       /* TODO: use parameter "name" */
        guint32 bitmap_len;
        proto_item *fitem = NULL;
        proto_tree *newftree = NULL;
@@ -4828,110 +4828,110 @@ dissect_nfs_attributes(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                                break;
                                                
                                        case FATTR4_TYPE:
-                                               attr_vals_offset = dissect_rpc_uint32(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint32(tvb,
                                                        attr_newftree, hf_nfs_ftype4, attr_vals_offset);
                                                break;
 
                                        case FATTR4_FH_EXPIRE_TYPE:
                                                attr_vals_offset = dissect_nfs_fattr4_fh_expire_type(tvb,
-                                                       attr_vals_offset, pinfo, attr_newftree);
+                                                       attr_vals_offset, attr_newftree);
                                                break;
 
                                        case FATTR4_CHANGE:
                                                attr_vals_offset = dissect_nfs_changeid4(tvb, 
-                                                       attr_vals_offset, pinfo, attr_newftree, "fattr4_change");
+                                                       attr_vals_offset, attr_newftree, "fattr4_change");
                                                break;
 
                                        case FATTR4_SIZE:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_size, attr_vals_offset);
                                                break;
 
                                        case FATTR4_LINK_SUPPORT:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_link_support, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_SYMLINK_SUPPORT:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_symlink_support, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_NAMED_ATTR:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_named_attr, attr_vals_offset);
                                                break;
 
                                        case FATTR4_FSID:
                                                attr_vals_offset = dissect_nfs_fsid4(tvb, attr_vals_offset,
-                                                       pinfo, attr_newftree, "fattr4_fsid");
+                                                       attr_newftree, "fattr4_fsid");
                                                break;
 
                                        case FATTR4_UNIQUE_HANDLES:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_unique_handles, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_LEASE_TIME:
-                                               attr_vals_offset = dissect_rpc_uint32(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint32(tvb,
                                                        attr_newftree, hf_nfs_fattr4_lease_time, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_RDATTR_ERROR:
                                                attr_vals_offset = dissect_nfs_nfsstat4(tvb, attr_vals_offset,
-                                                       pinfo, attr_newftree, NULL);
+                                                       attr_newftree, NULL);
                                                break;
 
                                        case FATTR4_ACL:
                                                attr_vals_offset = dissect_nfs_nfsace4(tvb, attr_vals_offset,
-                                                       pinfo, attr_newftree, "fattr4_acl");
+                                                       attr_newftree, "fattr4_acl");
                                                break;
 
                                        case FATTR4_ACLSUPPORT:
-                                               attr_vals_offset = dissect_rpc_uint32(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint32(tvb,
                                                        attr_newftree, hf_nfs_fattr4_aclsupport, offset);
                                                break;
 
                                        case FATTR4_ARCHIVE:
                                                attr_vals_offset = dissect_rpc_bool(tvb, 
-                                                       pinfo, attr_newftree, hf_nfs_fattr4_archive, 
+                                                       attr_newftree, hf_nfs_fattr4_archive, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_CANSETTIME:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_cansettime, attr_vals_offset);
                                                break;
 
                                        case FATTR4_CASE_INSENSITIVE:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_case_insensitive, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_CASE_PRESERVING:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_case_preserving, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_CHOWN_RESTRICTED:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_chown_restricted, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_FILEID:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_fileid, attr_vals_offset);
                                                break;
 
                                        case FATTR4_FILES_AVAIL:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_files_avail, 
                                                        attr_vals_offset);
                                                break;
@@ -4942,137 +4942,137 @@ dissect_nfs_attributes(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                                break;
 
                                        case FATTR4_FILES_FREE:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_files_free, attr_vals_offset);
                                                break;
 
                                        case FATTR4_FILES_TOTAL:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_files_total, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_FS_LOCATIONS:
                                                attr_vals_offset = dissect_nfs_fs_locations4(tvb, 
-                                                       attr_vals_offset, pinfo, attr_newftree, 
+                                                       attr_vals_offset, attr_newftree, 
                                                        "fattr4_fs_locations");
                                                break;
 
                                        case FATTR4_HIDDEN:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_hidden, attr_vals_offset);
                                                break;
 
                                        case FATTR4_HOMOGENEOUS:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_homogeneous, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_MAXFILESIZE:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_maxfilesize, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_MAXLINK:
-                                               attr_vals_offset = dissect_rpc_uint32(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint32(tvb,
                                                        attr_newftree, hf_nfs_fattr4_maxlink, attr_vals_offset);
                                                break;
 
                                        case FATTR4_MAXNAME:
-                                               attr_vals_offset = dissect_rpc_uint32(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint32(tvb,
                                                        attr_newftree, hf_nfs_fattr4_maxname, attr_vals_offset);
                                                break;
 
                                        case FATTR4_MAXREAD:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_maxread, attr_vals_offset);
                                                break;
 
                                        case FATTR4_MAXWRITE:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_maxwrite, attr_vals_offset);
                                                break;
 
                                        case FATTR4_MIMETYPE:
                                                attr_vals_offset = dissect_nfs_utf8string(tvb, 
-                                                       attr_vals_offset, pinfo, attr_newftree, 
+                                                       attr_vals_offset, attr_newftree, 
                                                        hf_nfs_fattr4_mimetype, NULL);
                                                break;
                                        
                                        case FATTR4_MODE:
                                                attr_vals_offset = dissect_nfs_mode4(tvb,
-                                                       attr_vals_offset, pinfo, attr_newftree, "fattr4_mode");
+                                                       attr_vals_offset, attr_newftree, "fattr4_mode");
                                                break;
 
                                        case FATTR4_NO_TRUNC:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_no_trunc, attr_vals_offset);
                                                break;
 
                                        case FATTR4_NUMLINKS:
-                                               attr_vals_offset = dissect_rpc_uint32(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint32(tvb,
                                                        attr_newftree, hf_nfs_fattr4_numlinks, attr_vals_offset);
                                                break;
 
                                        case FATTR4_OWNER:
                                                attr_vals_offset = dissect_nfs_utf8string(tvb, 
-                                                       attr_vals_offset, pinfo, attr_newftree, 
+                                                       attr_vals_offset, attr_newftree, 
                                                        hf_nfs_fattr4_owner,
                                                        NULL);
                                                break;
 
                                        case FATTR4_OWNER_GROUP:
                                                attr_vals_offset = dissect_nfs_utf8string(tvb, 
-                                                       attr_vals_offset, pinfo, attr_newftree, 
+                                                       attr_vals_offset, attr_newftree, 
                                                        hf_nfs_fattr4_owner_group, NULL);
                                                break;
 
                                        case FATTR4_QUOTA_AVAIL_HARD:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_quota_hard, attr_vals_offset);
                                                break;
 
                                        case FATTR4_QUOTA_AVAIL_SOFT:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_quota_soft, attr_vals_offset);
                                                break;
 
                                        case FATTR4_QUOTA_USED:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_quota_used, attr_vals_offset);
                                                break;
 
                                        case FATTR4_RAWDEV:
                                                attr_vals_offset = dissect_nfs_specdata4(tvb, 
-                                                       attr_vals_offset, pinfo, attr_newftree, "fattr4_rawdev");
+                                                       attr_vals_offset, attr_newftree, "fattr4_rawdev");
                                                break;
 
                                        case FATTR4_SPACE_AVAIL:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_space_avail, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_SPACE_FREE:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_space_free, attr_vals_offset);
                                                break;
 
                                        case FATTR4_SPACE_TOTAL:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_space_total, 
                                                        attr_vals_offset);
                                                break;
 
                                        case FATTR4_SPACE_USED:
-                                               attr_vals_offset = dissect_rpc_uint64(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_uint64(tvb,
                                                        attr_newftree, hf_nfs_fattr4_space_used, attr_vals_offset);
                                                break;
                                        
                                        case FATTR4_SYSTEM:
-                                               attr_vals_offset = dissect_rpc_bool(tvb, pinfo, 
+                                               attr_vals_offset = dissect_rpc_bool(tvb,
                                                        attr_newftree, hf_nfs_fattr4_system, attr_vals_offset);
                                                break;
 
@@ -5083,13 +5083,13 @@ dissect_nfs_attributes(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                        case FATTR4_TIME_METADATA:
                                        case FATTR4_TIME_MODIFY:
                                                attr_vals_offset = dissect_nfs_nfstime4(tvb, attr_vals_offset,
-                                                       pinfo, attr_newftree, "nfstime4");
+                                                       attr_newftree, "nfstime4");
                                                break;
 
                                        case FATTR4_TIME_ACCESS_SET:
                                        case FATTR4_TIME_MODIFY_SET:
                                                attr_vals_offset = dissect_nfs_settime4(tvb, 
-                                                       attr_vals_offset, pinfo, attr_newftree, "settime4");
+                                                       attr_vals_offset, attr_newftree, "settime4");
                                                break;
 
                                        default:
@@ -5127,7 +5127,7 @@ dissect_nfs_fattr4(tvbuff_t *tvb, int offset, packet_info *pinfo,
        offset = dissect_nfs_attributes(tvb, offset, pinfo, newftree, name, 
                FATTR4_FULL_DISSECT);
 
-       offset = dissect_nfsdata(tvb, offset, pinfo, tree, hf_nfs_attrlist4);
+       offset = dissect_nfsdata(tvb, offset, tree, hf_nfs_attrlist4);
 
        return offset;
 }
@@ -5143,7 +5143,7 @@ static const value_string names_open4_share_access[] = {
 };
 
 int
-dissect_nfs_open4_share_access(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_open4_share_access(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
        guint share_access;
@@ -5169,7 +5169,7 @@ static const value_string names_open4_share_deny[] = {
 };
 
 int
-dissect_nfs_open4_share_deny(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_open4_share_deny(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
        guint deny_access;
@@ -5183,22 +5183,22 @@ dissect_nfs_open4_share_deny(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_open_owner4(tvbuff_t *tvb, int offset, packet_info *pinfo, 
-                                        proto_tree *tree)
+dissect_nfs_open_owner4(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
-       offset = dissect_nfs_clientid4(tvb, offset, pinfo, tree);
-       offset = dissect_nfsdata(tvb, offset, pinfo, tree, hf_nfs_open_owner4);
+       offset = dissect_nfs_clientid4(tvb, offset, tree);
+       offset = dissect_nfsdata(tvb, offset, tree, hf_nfs_open_owner4);
 
        return offset;
 }
 
 int
 dissect_nfs_open_claim_delegate_cur4(tvbuff_t *tvb, int offset,
-       packet_info *pinfo, proto_tree *tree, char *name)
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, 
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint64(tvb, tree, 
                hf_nfs_stateid4_delegate_stateid, offset);
-       offset = dissect_nfs_component4(tvb, offset, pinfo, tree, "file");
+       offset = dissect_nfs_component4(tvb, offset, tree, "file");
        return offset;
 }
 
@@ -5216,7 +5216,7 @@ static const value_string names_claim_type4[] = {
 };
 
 int
-dissect_nfs_open_claim4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_open_claim4(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
        guint open_claim_type4;
@@ -5236,22 +5236,22 @@ dissect_nfs_open_claim4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        switch(open_claim_type4)
                        {
                        case CLAIM_NULL:
-                               offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                               offset = dissect_nfs_component4(tvb, offset, newftree, 
                                        "file");
                                break;
 
                        case CLAIM_PREVIOUS:
-                               offset = dissect_rpc_uint32(tvb, pinfo, newftree, 
+                               offset = dissect_rpc_uint32(tvb, newftree, 
                                        hf_nfs_delegate_type, offset);
                                break;
 
                        case CLAIM_DELEGATE_CUR:
-                               offset = dissect_nfs_open_claim_delegate_cur4(tvb, offset, pinfo, 
+                               offset = dissect_nfs_open_claim_delegate_cur4(tvb, offset,
                                        newftree, "delegate_cur_info");
                                break;
 
                        case CLAIM_DELEGATE_PREV:
-                               offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                               offset = dissect_nfs_component4(tvb, offset, newftree, 
                                        "file_delegate_prev");
                                break;
 
@@ -5266,8 +5266,9 @@ dissect_nfs_open_claim4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 int
 dissect_nfs_createhow4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+       proto_tree *tree, char *name _U_)
 {
+       /* TODO: use parameter "name" */
        guint mode;
 
        /* This is intentional; we're using the same flags as NFSv3 */
@@ -5283,7 +5284,7 @@ dissect_nfs_createhow4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                break;
 
        case EXCLUSIVE:         /* EXCLUSIVE4 */
-               offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_verifier4, offset);
+               offset = dissect_rpc_uint64(tvb, tree, hf_nfs_verifier4, offset);
                break;
        
        default:
@@ -5336,23 +5337,25 @@ dissect_nfs_openflag4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_clientaddr4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_clientaddr4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_nfs_opaque4(tvb, offset, pinfo, tree, "network id");
-       offset = dissect_nfs_opaque4(tvb, offset, pinfo, tree, "universal address");
+       /* TODO: use parameter "name" */
+       offset = dissect_nfs_opaque4(tvb, offset, tree, "network id");
+       offset = dissect_nfs_opaque4(tvb, offset, tree, "universal address");
 
        return offset;
 }
        
 
 int
-dissect_nfs_cb_client4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_cb_client4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_cb_program, 
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_cb_program, 
                offset);
-       offset = dissect_nfs_clientaddr4(tvb, offset, pinfo, tree, "cb_location");
+       offset = dissect_nfs_clientaddr4(tvb, offset, tree, "cb_location");
        return offset;
 }
 
@@ -5367,7 +5370,7 @@ static const value_string names_stable_how4[] = {
 };
 
 int
-dissect_nfs_stable_how4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_stable_how4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
        guint stable_how4;
@@ -5382,10 +5385,11 @@ dissect_nfs_stable_how4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_opaque4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_opaque4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       return dissect_nfsdata(tvb, offset, pinfo, tree, hf_nfs_data);
+       /* TODO: use parameter "name" */
+       return dissect_nfsdata(tvb, offset, tree, hf_nfs_data);
 }
 
 /* There is probably a better (built-in?) way to do this, but this works
@@ -5473,8 +5477,9 @@ gint *nfsv4_operation_ett[] =
 
 int
 dissect_nfs_dirlist4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+       proto_tree *tree, char *name _U_)
 {
+       /* TODO: use parameter "name" */
        proto_tree *newftree = NULL;
        guint nextentry;
 
@@ -5483,27 +5488,27 @@ dissect_nfs_dirlist4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        nextentry = tvb_get_ntohl(tvb, offset);
 
-       offset = dissect_rpc_bool(tvb, pinfo, newftree, hf_nfs_data_follows,
+       offset = dissect_rpc_bool(tvb, newftree, hf_nfs_data_follows,
                offset);
 
        while (nextentry)
        {
                /* offset = dissect_nfs_cookie4(tvb, offset, pinfo, newftree); */
-               offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_cookie4, offset);
-               offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, "name");
+               offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_cookie4, offset);
+               offset = dissect_nfs_component4(tvb, offset, newftree, "name");
                offset = dissect_nfs_fattr4(tvb, offset, pinfo, newftree, "attrs");
                nextentry = tvb_get_ntohl(tvb, offset);
                offset += 4;
        }
 
-       offset = dissect_rpc_bool(tvb, pinfo, newftree, hf_nfs_dirlist4_eof,
+       offset = dissect_rpc_bool(tvb, newftree, hf_nfs_dirlist4_eof,
                offset);
 
        return offset;
 }
 
 int
-dissect_nfs_change_info4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_change_info4(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
        proto_tree *newftree = NULL;
@@ -5515,10 +5520,10 @@ dissect_nfs_change_info4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                newftree = proto_item_add_subtree(fitem, ett_nfs_change_info4);
 
                if (newftree) {
-                       offset = dissect_rpc_bool(tvb, pinfo, newftree, 
+                       offset = dissect_rpc_bool(tvb, newftree, 
                                hf_nfs_change_info4_atomic, offset);
-                       offset = dissect_nfs_changeid4(tvb, offset, pinfo, newftree, "before");
-                       offset = dissect_nfs_changeid4(tvb, offset, pinfo, newftree, "after");
+                       offset = dissect_nfs_changeid4(tvb, offset, newftree, "before");
+                       offset = dissect_nfs_changeid4(tvb, offset, newftree, "after");
                }
        }
 
@@ -5541,25 +5546,26 @@ static const value_string names_nfs_lock_type4[] =
 };
 
 int
-dissect_nfs_lock4denied(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_lock4denied(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_offset4, offset);
-       offset = dissect_nfs_length4(tvb, offset, pinfo, tree, "length");
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_lock_type4, offset);
-       offset = dissect_nfs_lock_owner4(tvb, offset, pinfo, tree, "owner");
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint64(tvb, tree, hf_nfs_offset4, offset);
+       offset = dissect_nfs_length4(tvb, offset, tree, "length");
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_lock_type4, offset);
+       offset = dissect_nfs_lock_owner4(tvb, offset, tree, "owner");
        return offset;
 }
 
 
 int
-dissect_nfs_ace4(tvbuff_t *tvb, int offset, packet_info *pinfo, 
-       proto_tree *tree, char *name)
+dissect_nfs_ace4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_nfs_acetype4(tvb, offset, pinfo, tree, "type");
-       offset = dissect_nfs_aceflag4(tvb, offset, pinfo, tree, "flag");
-       offset = dissect_nfs_acemask4(tvb, offset, pinfo, tree, "access_mask");
-       return dissect_nfs_utf8string(tvb, offset, pinfo, tree, hf_nfs_ace4, NULL);
+       offset = dissect_nfs_acetype4(tvb, offset, tree, "type");
+       offset = dissect_nfs_aceflag4(tvb, offset, tree, "flag");
+       offset = dissect_nfs_acemask4(tvb, offset, tree, "access_mask");
+       return dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_ace4, NULL);
 }
 
 static const value_string names_open4_result_flags[] = {
@@ -5571,7 +5577,7 @@ static const value_string names_open4_result_flags[] = {
 };
 
 int 
-dissect_nfs_open4_rflags(tvbuff_t *tvb, int offset, packet_info *pinfo, 
+dissect_nfs_open4_rflags(tvbuff_t *tvb, int offset,
        proto_tree *tree, char *name)
 {
        guint rflags;
@@ -5609,7 +5615,7 @@ dissect_nfs_open4_rflags(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_stateid4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_stateid4(tvbuff_t *tvb, int offset,
                proto_tree *tree)
 {
        proto_item *fitem = NULL;
@@ -5623,7 +5629,7 @@ dissect_nfs_stateid4(tvbuff_t *tvb, int offset, packet_info *pinfo,
        if (fitem) {
                newftree = proto_item_add_subtree(fitem, ett_nfs_stateid4);
                if (newftree) {
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_seqid4, 
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_seqid4, 
                                offset);
 
                        bytes_left = 12;
@@ -5650,23 +5656,24 @@ dissect_nfs_stateid4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_open_read_delegation4(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nfs_open_read_delegation4(tvbuff_t *tvb, int offset,
        proto_tree *tree)
 {
-       offset = dissect_nfs_stateid4(tvb, offset, pinfo, tree);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nfs_recall4, offset);
-       offset = dissect_nfs_ace4(tvb, offset, pinfo, tree, "permissions");
+       offset = dissect_nfs_stateid4(tvb, offset, tree);
+       offset = dissect_rpc_bool(tvb, tree, hf_nfs_recall4, offset);
+       offset = dissect_nfs_ace4(tvb, offset, tree, "permissions");
 
        return offset;
 }
 
 int
-dissect_nfs_modified_limit4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_modified_limit4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_num_blocks, 
+       /* TODO: use parameter "name" */
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_num_blocks, 
                offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_bytes_per_block,
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_bytes_per_block,
                offset);
        return offset;
 }
@@ -5680,9 +5687,10 @@ static const value_string names_limit_by4[] = {
 };
 
 int
-dissect_nfs_space_limit4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_space_limit4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
+       /* TODO: use parameter "name" */
        guint limitby;
 
        limitby = tvb_get_ntohl(tvb, offset);
@@ -5692,12 +5700,12 @@ dissect_nfs_space_limit4(tvbuff_t *tvb, int offset, packet_info *pinfo,
        switch(limitby)
        {
        case NFS_LIMIT_SIZE:
-               offset = dissect_rpc_uint64(tvb, pinfo, tree, hf_nfs_filesize, 
+               offset = dissect_rpc_uint64(tvb, tree, hf_nfs_filesize, 
                        offset);
                break;
 
        case NFS_LIMIT_BLOCKS:
-               offset = dissect_nfs_modified_limit4(tvb, offset, pinfo, tree, 
+               offset = dissect_nfs_modified_limit4(tvb, offset, tree, 
                        "mod_blocks");
                break;
 
@@ -5710,12 +5718,12 @@ dissect_nfs_space_limit4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 int
 dissect_nfs_open_write_delegation4(tvbuff_t *tvb, int offset, 
-       packet_info *pinfo, proto_tree *tree)
+       proto_tree *tree)
 {
-       offset = dissect_nfs_stateid4(tvb, offset, pinfo, tree);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nfs_recall, offset);
-       offset = dissect_nfs_space_limit4(tvb, offset, pinfo, tree, "space_limit");
-       return dissect_nfs_ace4(tvb, offset, pinfo, tree, "permissions");
+       offset = dissect_nfs_stateid4(tvb, offset, tree);
+       offset = dissect_rpc_bool(tvb, tree, hf_nfs_recall, offset);
+       offset = dissect_nfs_space_limit4(tvb, offset, tree, "space_limit");
+       return dissect_nfs_ace4(tvb, offset, tree, "permissions");
 }
 
 #define OPEN_DELEGATE_NONE 0
@@ -5729,9 +5737,10 @@ static const value_string names_open_delegation_type4[] = {
 };
 
 int
-dissect_nfs_open_delegation4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree, char *name)
+dissect_nfs_open_delegation4(tvbuff_t *tvb, int offset,
+       proto_tree *tree, char *name _U_)
 {
+       /* TODO: use parameter "name" */
        guint delegation_type;
        proto_tree *newftree = NULL;
        proto_item *fitem = NULL;
@@ -5750,12 +5759,12 @@ dissect_nfs_open_delegation4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case OPEN_DELEGATE_READ:
-                       offset = dissect_nfs_open_read_delegation4(tvb, offset, pinfo, 
+                       offset = dissect_nfs_open_read_delegation4(tvb, offset,
                                newftree);
                        break;
 
                case OPEN_DELEGATE_WRITE:
-                       offset = dissect_nfs_open_write_delegation4(tvb, offset, pinfo, 
+                       offset = dissect_nfs_open_write_delegation4(tvb, offset,
                                newftree);
                        break;
 
@@ -5768,17 +5777,16 @@ dissect_nfs_open_delegation4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_rpcsec_gss_info(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree)
+dissect_nfs_rpcsec_gss_info(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
        guint data_follows;
 
        while ((data_follows = tvb_get_ntohl(tvb, offset)))
        {
                offset += 4;
-               offset = dissect_nfsdata(tvb, offset, pinfo, tree, hf_nfs_sec_oid4); 
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_qop4, offset);
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+               offset = dissect_nfsdata(tvb, offset, tree, hf_nfs_sec_oid4); 
+               offset = dissect_rpc_uint32(tvb, tree, hf_nfs_qop4, offset);
+               offset = dissect_rpc_uint32(tvb, tree, 
                                hf_nfs_secinfo_rpcsec_gss_info_service, offset);
        }
 
@@ -5786,40 +5794,37 @@ dissect_nfs_rpcsec_gss_info(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 int
-dissect_nfs_open_to_lock_owner4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree)
+dissect_nfs_open_to_lock_owner4(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_seqid4, offset);
-       offset = dissect_nfs_stateid4(tvb, offset, pinfo, tree);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_lock_seqid4, offset);
-       offset = dissect_nfs_lock_owner4(tvb, offset, pinfo, tree, "owner");
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_seqid4, offset);
+       offset = dissect_nfs_stateid4(tvb, offset, tree);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_lock_seqid4, offset);
+       offset = dissect_nfs_lock_owner4(tvb, offset, tree, "owner");
 
        return offset;
 }
 
 int
-dissect_nfs_exist_lock_owner4(tvbuff_t *tvb, int offset, packet_info *pinfo,
-       proto_tree *tree)
+dissect_nfs_exist_lock_owner4(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
-       offset = dissect_nfs_stateid4(tvb, offset, pinfo, tree);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_lock_seqid4, offset);
+       offset = dissect_nfs_stateid4(tvb, offset, tree);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_lock_seqid4, offset);
 
        return offset;
 }
 
 int
-dissect_nfs_locker4(tvbuff_t *tvb, int offset, packet_info *pinfo, 
-       proto_tree *tree)
+dissect_nfs_locker4(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
        guint new_lock_owner;
 
        new_lock_owner = tvb_get_ntohl(tvb, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nfs_new_lock_owner, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nfs_new_lock_owner, offset);
        
        if (new_lock_owner)
-               offset = dissect_nfs_open_to_lock_owner4(tvb, offset, pinfo, tree);
+               offset = dissect_nfs_open_to_lock_owner4(tvb, offset, tree);
        else
-               offset = dissect_nfs_exist_lock_owner4(tvb, offset, pinfo, tree);
+               offset = dissect_nfs_exist_lock_owner4(tvb, offset, tree);
 
        return offset;
 }
@@ -5865,19 +5870,19 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                switch(opcode)
                {
                case NFS4_OP_ACCESS:
-                       offset = dissect_access(tvb, offset, pinfo, newftree, "access");
+                       offset = dissect_access(tvb, offset, newftree, "access");
                        break;
 
                case NFS4_OP_CLOSE:
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_seqid4,
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_seqid4,
                                offset);
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_COMMIT:
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_offset4,
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_offset4,
                                offset);
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_count4,
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_count4,
                                offset);
                        break;
 
@@ -5886,19 +5891,19 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                guint create_type;
 
                                create_type = tvb_get_ntohl(tvb, offset);
-                               offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_ftype4, 
+                               offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_ftype4, 
                                        offset);
 
                                switch(create_type)
                                {
                                case NF4LNK:
-                                       offset = dissect_nfs_linktext4(tvb, offset, pinfo, newftree, 
+                                       offset = dissect_nfs_linktext4(tvb, offset, newftree, 
                                                "linkdata");
                                        break;
                                
                                case NF4BLK:
                                case NF4CHR:
-                                       offset = dissect_nfs_specdata4(tvb, offset, pinfo, 
+                                       offset = dissect_nfs_specdata4(tvb, offset,
                                                newftree, "devdata");
                                        break;
 
@@ -5911,7 +5916,7 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                        break;
                                }
 
-                               offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                               offset = dissect_nfs_component4(tvb, offset, newftree, 
                                        "objname");
 
                                offset = dissect_nfs_fattr4(tvb, offset, pinfo, newftree, 
@@ -5920,12 +5925,12 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_DELEGPURGE:
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, 
+                       offset = dissect_rpc_uint64(tvb, newftree, 
                                hf_nfs_clientid4, offset);
                        break;
 
                case NFS4_OP_DELEGRETURN:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_GETATTR:
@@ -5937,43 +5942,43 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_LINK:
-                       offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_component4(tvb, offset, newftree, 
                                "newname");
                        break;
 
                case NFS4_OP_LOCK:
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_lock_type4,
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_lock_type4,
                                offset);
-                       offset = dissect_rpc_bool(tvb, pinfo, newftree, hf_nfs_lock4_reclaim,
+                       offset = dissect_rpc_bool(tvb, newftree, hf_nfs_lock4_reclaim,
                                offset);
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_offset4,
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_offset4,
                                offset);
-                       offset = dissect_nfs_length4(tvb, offset, pinfo, newftree, "length");
-                       offset = dissect_nfs_locker4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_length4(tvb, offset, newftree, "length");
+                       offset = dissect_nfs_locker4(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_LOCKT:
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_lock_type4,
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_lock_type4,
                                offset);
-                       offset = dissect_nfs_lock_owner4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_lock_owner4(tvb, offset, newftree, 
                                "owner");
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_offset4,
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_offset4,
                                offset);
-                       offset = dissect_nfs_length4(tvb, offset, pinfo, newftree, "length");
+                       offset = dissect_nfs_length4(tvb, offset, newftree, "length");
                        break;
 
                case NFS4_OP_LOCKU:
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_lock_type4,
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_lock_type4,
                                offset);
-                       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_seqid4, offset);
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_offset4,
+                       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_seqid4, offset);
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_offset4,
                                offset);
-                       offset = dissect_nfs_length4(tvb, offset, pinfo, newftree, "length");
+                       offset = dissect_nfs_length4(tvb, offset, newftree, "length");
                        break;
 
                case NFS4_OP_LOOKUP:
-                       offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_component4(tvb, offset, newftree, 
                                "objname");
                        break;
 
@@ -5986,32 +5991,32 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_OPEN:
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_seqid4, 
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_seqid4, 
                                offset);
-                       offset = dissect_nfs_open4_share_access(tvb, offset, pinfo, newftree);
-                       offset = dissect_nfs_open4_share_deny(tvb, offset, pinfo, newftree);
-                       offset = dissect_nfs_open_owner4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_open4_share_access(tvb, offset, newftree);
+                       offset = dissect_nfs_open4_share_deny(tvb, offset, newftree);
+                       offset = dissect_nfs_open_owner4(tvb, offset, newftree);
                        offset = dissect_nfs_openflag4(tvb, offset, pinfo, newftree);
-                       offset = dissect_nfs_open_claim4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_open_claim4(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_OPENATTR:
-                       offset = dissect_rpc_bool(tvb, pinfo, newftree, hf_nfs_attrdircreate,
+                       offset = dissect_rpc_bool(tvb, newftree, hf_nfs_attrdircreate,
                                offset);
                        break;
 
                case NFS4_OP_OPEN_CONFIRM:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_seqid4, 
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_seqid4, 
                                offset);
                        break;
 
                case NFS4_OP_OPEN_DOWNGRADE:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_seqid4, 
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_seqid4, 
                                offset);
-                       offset = dissect_nfs_open4_share_access(tvb, offset, pinfo, newftree);
-                       offset = dissect_nfs_open4_share_deny(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_open4_share_access(tvb, offset, newftree);
+                       offset = dissect_nfs_open4_share_deny(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_PUTFH:
@@ -6023,21 +6028,21 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_READ:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_offset4,
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_offset4,
                                offset);
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_count4,
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_count4,
                                offset);
                        break;
 
                case NFS4_OP_READDIR:
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_cookie4,
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_cookie4,
                                offset);
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_cookieverf4,
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_cookieverf4,
                                offset);
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, 
+                       offset = dissect_rpc_uint32(tvb, newftree, 
                                hf_nfs_count4_dircount, offset);
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree,
+                       offset = dissect_rpc_uint32(tvb, newftree,
                                hf_nfs_count4_maxcount, offset);
                        offset = dissect_nfs_attributes(tvb, offset, pinfo, newftree, "attr", 
                                FATTR4_BITMAP_ONLY);
@@ -6047,19 +6052,19 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_REMOVE:
-                       offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_component4(tvb, offset, newftree, 
                                "target");
                        break;
 
                case NFS4_OP_RENAME:
-                       offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_component4(tvb, offset, newftree, 
                                "oldname");
-                       offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_component4(tvb, offset, newftree, 
                                "newname");
                        break;
 
                case NFS4_OP_RENEW:
-                       offset = dissect_nfs_clientid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_clientid4(tvb, offset, newftree);
                        break;
        
                case NFS4_OP_RESTOREFH:
@@ -6067,11 +6072,11 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_SECINFO:
-                       offset = dissect_nfs_component4(tvb, offset, pinfo, newftree, "name");
+                       offset = dissect_nfs_component4(tvb, offset, newftree, "name");
                        break;
 
                case NFS4_OP_SETATTR:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
                        offset = dissect_nfs_fattr4(tvb, offset, pinfo, newftree, 
                                "obj_attributes");
                        break;
@@ -6088,10 +6093,10 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
                                        if (newftree)
                                        {
-                                               offset = dissect_nfs_clientid4(tvb, offset, pinfo, 
+                                               offset = dissect_nfs_clientid4(tvb, offset,
                                                        client_tree);
 
-                                               offset = dissect_nfsdata(tvb, offset, pinfo, client_tree, 
+                                               offset = dissect_nfsdata(tvb, offset, client_tree, 
                                                        hf_nfs_client_id4_id); 
                                        }
                                }
@@ -6100,14 +6105,14 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                if (fitem) {
                                        newftree = proto_item_add_subtree(fitem, ett_nfs_cb_client4);
                                        if (newftree)
-                                               offset = dissect_nfs_cb_client4(tvb, offset, pinfo, newftree, 
+                                               offset = dissect_nfs_cb_client4(tvb, offset, newftree, 
                                                        "callback");
                                }
                        }
                        break;
 
                case NFS4_OP_SETCLIENTID_CONFIRM:
-                       offset = dissect_nfs_clientid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_clientid4(tvb, offset, newftree);
                        break;
                
                case NFS4_OP_VERIFY:
@@ -6116,12 +6121,12 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_WRITE:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_offset4,
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_offset4,
                                offset);
-                       offset = dissect_nfs_stable_how4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_stable_how4(tvb, offset, newftree, 
                                "stable");
-                       offset = dissect_nfs_opaque4(tvb, offset, pinfo, newftree, "data");
+                       offset = dissect_nfs_opaque4(tvb, offset, newftree, "data");
                        break;
                
                default:
@@ -6136,8 +6141,8 @@ int
 dissect_nfs4_compound_call(tvbuff_t *tvb, int offset, packet_info *pinfo, 
        proto_tree* tree)
 {
-       offset = dissect_nfs_utf8string(tvb, offset, pinfo, tree, hf_nfs_tag4, NULL);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nfs_minorversion,
+       offset = dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_tag4, NULL);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nfs_minorversion,
                offset);
        offset = dissect_nfs_argop4(tvb, offset, pinfo, tree);
 
@@ -6146,8 +6151,9 @@ dissect_nfs4_compound_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 int
 dissect_nfs_resop4(tvbuff_t *tvb, int offset, packet_info *pinfo, 
-       proto_tree *tree, char *name)
+       proto_tree *tree, char *name _U_)
 {
+       /* TODO: use parameter "name" */
        guint ops, ops_counter;
        guint opcode;
        proto_item *fitem;
@@ -6184,7 +6190,7 @@ dissect_nfs_resop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                if (newftree == NULL)
                        break;          /* error adding new subtree to operation item */
 
-               offset = dissect_nfs_nfsstat4(tvb, offset, pinfo, newftree, &status);
+               offset = dissect_nfs_nfsstat4(tvb, offset, newftree, &status);
 
                /*
                 * With the exception of NFS4_OP_LOCK, NFS4_OP_LOCKT, and 
@@ -6200,21 +6206,21 @@ dissect_nfs_resop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                switch(opcode)
                {
                case NFS4_OP_ACCESS:
-                       offset = dissect_access(tvb, offset, pinfo, newftree, "Supported");
-                       offset = dissect_access(tvb, offset, pinfo, newftree, "Access");
+                       offset = dissect_access(tvb, offset, newftree, "Supported");
+                       offset = dissect_access(tvb, offset, newftree, "Access");
                        break;
 
                case NFS4_OP_CLOSE:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_COMMIT:
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_verifier4, 
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_verifier4, 
                                offset);
                        break;
 
                case NFS4_OP_CREATE:
-                       offset = dissect_nfs_change_info4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_change_info4(tvb, offset, newftree, 
                                "change_info");
                        offset = dissect_nfs_attributes(tvb, offset, pinfo, newftree,
                                "attrsset", FATTR4_BITMAP_ONLY);
@@ -6230,66 +6236,66 @@ dissect_nfs_resop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        break;
 
                case NFS4_OP_LINK:
-                       offset = dissect_nfs_change_info4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_change_info4(tvb, offset, newftree, 
                                "change_info");
                        break;
 
                case NFS4_OP_LOCK:
                case NFS4_OP_LOCKT:
                        if (status == NFS4_OK)
-                               offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
+                               offset = dissect_nfs_stateid4(tvb, offset, newftree);
                        else
                        if (status == NFS4ERR_DENIED)
-                               offset = dissect_nfs_lock4denied(tvb, offset, pinfo, newftree, 
+                               offset = dissect_nfs_lock4denied(tvb, offset, newftree, 
                                        "denied");
                        break;
 
                case NFS4_OP_LOCKU:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_OPEN:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
-                       offset = dissect_nfs_change_info4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
+                       offset = dissect_nfs_change_info4(tvb, offset, newftree, 
                                "change_info");
-                       offset = dissect_nfs_open4_rflags(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_open4_rflags(tvb, offset, newftree, 
                                "result_flags");
                        offset = dissect_nfs_attributes(tvb, offset, pinfo, newftree, 
                                "attrsset", FATTR4_BITMAP_ONLY);
-                       offset = dissect_nfs_open_delegation4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_open_delegation4(tvb, offset, newftree,
                                "delegation");
                        break;
 
                case NFS4_OP_OPEN_CONFIRM:
                case NFS4_OP_OPEN_DOWNGRADE:
-                       offset = dissect_nfs_stateid4(tvb, offset, pinfo, newftree);
+                       offset = dissect_nfs_stateid4(tvb, offset, newftree);
                        break;
 
                case NFS4_OP_READ:
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_eof, 
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_eof, 
                                offset);
-                       offset = dissect_nfs_opaque4(tvb, offset, pinfo, newftree, "data");
+                       offset = dissect_nfs_opaque4(tvb, offset, newftree, "data");
                        break;
 
                case NFS4_OP_READDIR:
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_verifier4, 
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_verifier4, 
                                offset);
                        offset = dissect_nfs_dirlist4(tvb, offset, pinfo, newftree, "reply");
                        break;
 
                case NFS4_OP_READLINK:
-                       offset = dissect_nfs_linktext4(tvb, offset, pinfo, newftree, "link");
+                       offset = dissect_nfs_linktext4(tvb, offset, newftree, "link");
                        break;
 
                case NFS4_OP_REMOVE:
-                       offset = dissect_nfs_change_info4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_change_info4(tvb, offset, newftree, 
                                "change_info");
                        break;
 
                case NFS4_OP_RENAME:
-                       offset = dissect_nfs_change_info4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_change_info4(tvb, offset, newftree, 
                                "source_cinfo");
-                       offset = dissect_nfs_change_info4(tvb, offset, pinfo, newftree,
+                       offset = dissect_nfs_change_info4(tvb, offset, newftree,
                                "target_cinfo");
                        break;
 
@@ -6318,7 +6324,7 @@ dissect_nfs_resop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                                                                ett_nfs_secinfo4_flavor_info);
                                                                if (secftree)
                                                                        offset = dissect_nfs_rpcsec_gss_info(tvb, offset,
-                                                                                       pinfo, secftree);
+                                                                                       secftree);
                                                                break;
 
                                                        default:
@@ -6336,20 +6342,20 @@ dissect_nfs_resop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
                case NFS4_OP_SETCLIENTID:
                        if (status == NFS4_OK)
-                               offset = dissect_rpc_uint64(tvb, pinfo, newftree,
+                               offset = dissect_rpc_uint64(tvb, newftree,
                                        hf_nfs_clientid4, offset);
                        else
                        if (status == NFS4ERR_CLID_INUSE)
-                               offset = dissect_nfs_clientaddr4(tvb, offset, pinfo, newftree,
+                               offset = dissect_nfs_clientaddr4(tvb, offset, newftree,
                                        "client_using");
                        break;
 
                case NFS4_OP_WRITE:
-                       offset = dissect_rpc_uint32(tvb, pinfo, newftree, hf_nfs_count4,
+                       offset = dissect_rpc_uint32(tvb, newftree, hf_nfs_count4,
                                offset);
-                       offset = dissect_nfs_stable_how4(tvb, offset, pinfo, newftree, 
+                       offset = dissect_nfs_stable_how4(tvb, offset, newftree, 
                                "committed");
-                       offset = dissect_rpc_uint64(tvb, pinfo, newftree, hf_nfs_verifier4, 
+                       offset = dissect_rpc_uint64(tvb, newftree, hf_nfs_verifier4, 
                                offset);
                        break;
 
@@ -6367,8 +6373,8 @@ dissect_nfs4_compound_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 {
        guint32 status;
 
-       offset = dissect_nfs_nfsstat4(tvb, offset, pinfo, tree, &status);
-       offset = dissect_nfs_utf8string(tvb, offset, pinfo, tree, hf_nfs_tag4, NULL);
+       offset = dissect_nfs_nfsstat4(tvb, offset, tree, &status);
+       offset = dissect_nfs_utf8string(tvb, offset, tree, hf_nfs_tag4, NULL);
        offset = dissect_nfs_resop4(tvb, offset, pinfo, tree, "arguments");
 
        return offset;
index dcaf97019a83349fff79b4fa4ff0f320b3689bfd..bb0f28799d795f4047a366c9674224fc8c191f6f 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-nisplus.c
  * 2001  Ronnie Sahlberg   <See AUTHORS for email>
  *
- * $Id: packet-nisplus.c,v 1.10 2002/01/20 22:12:27 guy Exp $
+ * $Id: packet-nisplus.c,v 1.11 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -265,7 +265,7 @@ static const value_string ns_type[] = {
 
 
 static int
-dissect_nisplus_time(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, int hfindex)
+dissect_nisplus_time(tvbuff_t *tvb, int offset, proto_tree *tree, int hfindex)
 {
        nstime_t ts;
 
@@ -279,9 +279,9 @@ dissect_nisplus_time(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *
 }
 
 static int
-dissect_group(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_group(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_group_name, offset, NULL);
 
        return offset;
@@ -300,7 +300,7 @@ dissect_group_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_group);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_group_flags, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
@@ -312,7 +312,7 @@ dissect_group_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 
 
 static int
-dissect_access_rights(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_access_rights(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
        proto_item* mask_item = NULL;
        proto_tree* mask_tree = NULL;
@@ -345,7 +345,7 @@ dissect_access_rights(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 }
 
 static int
-dissect_table(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_table(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -359,7 +359,7 @@ dissect_table(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_table_col);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_table_col_name, offset, NULL);
 
 
@@ -384,7 +384,7 @@ dissect_table(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
                tvb, offset, 4, mask);
        offset += 4;
 
-       offset = dissect_access_rights(tvb, offset, pinfo, lock_tree);
+       offset = dissect_access_rights(tvb, offset, lock_tree);
 
        proto_item_set_len(lock_item, offset-old_offset);
        return offset;
@@ -403,19 +403,19 @@ dissect_table_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_table);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_table_type, offset, NULL);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_table_maxcol, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_table_sep, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
                        dissect_table, hf_nisplus_table_cols);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_table_path, offset, NULL);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -423,7 +423,7 @@ dissect_table_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 }
 
 static int
-dissect_entry(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_entry(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -450,7 +450,7 @@ dissect_entry(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
        proto_tree_add_boolean(mask_tree, hf_nisplus_entry_mask_asn, tvb, offset, 4, mask);
        offset += 4;
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_entry_val, offset, NULL);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -469,7 +469,7 @@ dissect_entry_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_entry);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_entry_type, offset, NULL);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
@@ -480,7 +480,7 @@ dissect_entry_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 }
 
 static int
-dissect_attr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_attr(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -491,10 +491,10 @@ dissect_attr(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_attr);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_attr_name, offset, NULL);
 
-       offset = dissect_rpc_data(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_data(tvb, lock_tree, 
                        hf_nisplus_attr_val, offset);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -513,13 +513,13 @@ dissect_link_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_link);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_object_type, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
                        dissect_attr, hf_nisplus_attrs_array);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_nisplus_object_name, offset, NULL);
        
        proto_item_set_len(lock_item, offset-old_offset);
@@ -528,7 +528,7 @@ dissect_link_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 
 
 static int
-dissect_endpoint(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_endpoint(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -539,13 +539,13 @@ dissect_endpoint(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_endpoint);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_endpoint_uaddr, offset, NULL);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_endpoint_family, offset, NULL);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_endpoint_proto, offset, NULL);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -565,16 +565,16 @@ dissect_directory_server(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tr
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_server);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_server_name, offset, NULL);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
                        dissect_endpoint, hf_nisplus_endpoints);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_key_type, offset);
 
-       offset = dissect_rpc_data(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_data(tvb, lock_tree, 
                        hf_nisplus_key_data, offset);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -583,7 +583,7 @@ dissect_directory_server(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tr
 
 
 static int
-dissect_directory_mask(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_directory_mask(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -594,9 +594,9 @@ dissect_directory_mask(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_directory_mask);
 
-       offset = dissect_access_rights(tvb, offset, pinfo, lock_tree);
+       offset = dissect_access_rights(tvb, offset, lock_tree);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_object_type, offset);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -615,16 +615,16 @@ dissect_directory_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_directory);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_nisplus_directory_name, offset, NULL);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_directory_type, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
                        dissect_directory_server, hf_nisplus_servers);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_directory_ttl, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
@@ -635,7 +635,7 @@ dissect_directory_obj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 }
 
 static int
-dissect_nisplus_oid(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_nisplus_oid(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -646,10 +646,10 @@ dissect_nisplus_oid(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_oid);
 
-       offset = dissect_nisplus_time(tvb, offset, pinfo, lock_tree, 
+       offset = dissect_nisplus_time(tvb, offset, lock_tree, 
                        hf_nisplus_object_ctime);
 
-       offset = dissect_nisplus_time(tvb, offset, pinfo, lock_tree, 
+       offset = dissect_nisplus_time(tvb, offset, lock_tree, 
                        hf_nisplus_object_mtime);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -669,27 +669,27 @@ dissect_nisplus_object(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_object);
 
-       offset = dissect_nisplus_oid(tvb, offset, pinfo, lock_tree);
+       offset = dissect_nisplus_oid(tvb, offset, lock_tree);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_nisplus_object_name, offset, NULL);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_nisplus_object_owner, offset, NULL);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_nisplus_object_group, offset, NULL);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_string(tvb, lock_tree,
                        hf_nisplus_object_domain, offset, NULL);
 
-       offset = dissect_access_rights(tvb, offset, pinfo, lock_tree);
+       offset = dissect_access_rights(tvb, offset, lock_tree);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_object_ttl, offset);
 
        type = tvb_get_ntohl(tvb, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_object_type, offset);
        switch (type) {
        case    NIS_DIRECTORY_OBJ:
@@ -708,7 +708,7 @@ dissect_nisplus_object(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
                offset = dissect_link_obj(tvb, offset, pinfo, lock_tree);
                break;
        case    NIS_PRIVATE_OBJ:
-               offset = dissect_rpc_data(tvb, pinfo, lock_tree, 
+               offset = dissect_rpc_data(tvb, lock_tree, 
                                hf_nisplus_object_private, offset);
                break;
        case    NIS_NO_OBJ:
@@ -732,7 +732,7 @@ dissect_nisplus_object(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 static int
 dissect_ns_request(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_object_name, offset, NULL);
        
        offset = dissect_rpc_array(tvb, pinfo, tree, offset,
@@ -744,13 +744,13 @@ dissect_ns_request(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
 static int
 dissect_ib_request(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_object_name, offset, NULL);
        
        offset = dissect_rpc_array(tvb, pinfo, tree, offset,
                        dissect_attr, hf_nisplus_attrs_array);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_ib_flags, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, tree, offset,
@@ -759,29 +759,29 @@ dissect_ib_request(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
        offset = dissect_rpc_array(tvb, pinfo, tree, offset,
                        dissect_directory_server, hf_nisplus_cbservers);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_ib_bufsize, offset);
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, 
+       offset = dissect_rpc_data(tvb, tree, 
                        hf_nisplus_cookie, offset);
 
        return offset;
 }
 
 static int
-dissect_fd_args(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_fd_args(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_fd_dirname, offset, NULL);
        
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_fd_requester, offset, NULL);
 
        return offset;
 }
        
 static int
-dissect_nisplus_tag(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_nisplus_tag(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
@@ -792,10 +792,10 @@ dissect_nisplus_tag(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_tag);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_tag_type, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_tag_val, offset, NULL);
 
        proto_item_set_len(lock_item, offset-old_offset);
@@ -814,10 +814,10 @@ dissect_nisplus_taglist(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tre
 static int
 dissect_dump_args(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_dump_dir, offset, NULL);
 
-       offset = dissect_nisplus_time(tvb, offset, pinfo, tree, 
+       offset = dissect_nisplus_time(tvb, offset, tree, 
                        hf_nisplus_dump_time);
 
        offset = dissect_rpc_array(tvb, pinfo, tree, offset,
@@ -827,30 +827,30 @@ dissect_dump_args(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 }
 
 static int
-dissect_netobj(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_netobj(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, 
+       offset = dissect_rpc_data(tvb, tree, 
                        hf_nisplus_dummy, offset);
 
        return offset;
 }
 
 static int
-dissect_nisname(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_nisname(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_object_name, offset, NULL);
        
        return offset;
 }
 
 static int
-dissect_ping_args(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ping_args(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_ping_dir, offset, NULL);
 
-       offset = dissect_nisplus_time(tvb, offset, pinfo, tree, 
+       offset = dissect_nisplus_time(tvb, offset, tree, 
                        hf_nisplus_ping_time);
 
        return offset;
@@ -960,43 +960,43 @@ static const value_string nis_error[] = {
 static int
 dissect_nisplus_result(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_error, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, tree, offset,
                        dissect_nisplus_object, hf_nisplus_object);
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, 
+       offset = dissect_rpc_data(tvb, tree, 
                        hf_nisplus_cookie, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_zticks, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_dticks, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_aticks, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_cticks, offset);
 
        return offset;
 }
 
 static int
-dissect_fd_result(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_fd_result(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_error, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_nisplus_fd_dirname, offset, NULL);
        
-       offset = dissect_rpc_data(tvb, pinfo, tree, 
+       offset = dissect_rpc_data(tvb, tree, 
                        hf_nisplus_dir_data, offset);
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, 
+       offset = dissect_rpc_data(tvb, tree, 
                        hf_nisplus_signature, offset);
 
        return offset;
@@ -1035,16 +1035,16 @@ dissect_log_entry(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 
        lock_tree = proto_item_add_subtree(lock_item, ett_nisplus_log_entry);
 
-       offset = dissect_nisplus_time(tvb, offset, pinfo, lock_tree, 
+       offset = dissect_nisplus_time(tvb, offset, lock_tree, 
                        hf_nisplus_log_time);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_nisplus_log_type, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_log_principal, offset, NULL);
        
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_nisplus_directory_name, offset, NULL);
 
        offset = dissect_rpc_array(tvb, pinfo, lock_tree, offset,
@@ -1059,10 +1059,10 @@ dissect_log_entry(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 static int
 dissect_log_result(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_error, offset);
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, 
+       offset = dissect_rpc_data(tvb, tree, 
                        hf_nisplus_cookie, offset);
 
        offset = dissect_rpc_array(tvb, pinfo, tree, offset,
@@ -1072,42 +1072,42 @@ dissect_log_result(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
 }
 
 static int
-dissect_callback_result(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_callback_result(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nisplus_callback_status,
+       offset = dissect_rpc_bool(tvb, tree, hf_nisplus_callback_status,
                        offset);
 
        return offset;
 }
 
 static int
-dissect_change_time(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_change_time(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_nisplus_time(tvb, offset, pinfo, tree, 
+       offset = dissect_nisplus_time(tvb, offset, tree, 
                        hf_nisplus_log_time);
 
        return offset;
 }
 
 static int
-dissect_cp_result(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_cp_result(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_cp_status, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_cp_zticks, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_cp_dticks, offset);
 
        return offset;
 }
 
 static int
-dissect_nisplus_error(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_nisplus_error(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_nisplus_error, offset);
 
        return offset;
@@ -1847,7 +1847,7 @@ static gint ett_nispluscb = -1;
 static gint ett_nispluscb_entry = -1;
 
 static int
-dissect_cb_entry(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_cb_entry(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
index e8297eb3391d397ad8f0c07cb1d73ab43fcde655..4503711eca89ed38c06d219ca9b76b64c225445d 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-nlm.c
  * Routines for nlm dissection
  *
- * $Id: packet-nlm.c,v 1.23 2002/01/24 09:20:50 guy Exp $
+ * $Id: packet-nlm.c,v 1.24 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -165,21 +165,21 @@ dissect_lock(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int version, i
                        lock_tree = proto_item_add_subtree(lock_item, ett_nlm_lock);
        }
 
-       offset = dissect_rpc_string(tvb,pinfo,lock_tree,
+       offset = dissect_rpc_string(tvb,lock_tree,
                        hf_nlm_lock_caller_name, offset, NULL);
        offset = dissect_nfs_fh3(tvb, offset, pinfo, lock_tree,"fh");
 
-       offset = dissect_rpc_data(tvb, pinfo, lock_tree, hf_nlm_lock_owner, offset);
+       offset = dissect_rpc_data(tvb, lock_tree, hf_nlm_lock_owner, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, hf_nlm_lock_svid, offset);
+       offset = dissect_rpc_uint32(tvb, lock_tree, hf_nlm_lock_svid, offset);
 
        if (version == 4) {
-               offset = dissect_rpc_uint64(tvb, pinfo, lock_tree, hf_nlm_lock_l_offset64, offset);
-               offset = dissect_rpc_uint64(tvb, pinfo, lock_tree, hf_nlm_lock_l_len64, offset);
+               offset = dissect_rpc_uint64(tvb, lock_tree, hf_nlm_lock_l_offset64, offset);
+               offset = dissect_rpc_uint64(tvb, lock_tree, hf_nlm_lock_l_len64, offset);
        }
        else {
-               offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, hf_nlm_lock_l_offset, offset);
-               offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, hf_nlm_lock_l_len, offset);
+               offset = dissect_rpc_uint32(tvb, lock_tree, hf_nlm_lock_l_offset, offset);
+               offset = dissect_rpc_uint32(tvb, lock_tree, hf_nlm_lock_l_len, offset);
        }
 
        return offset;
@@ -190,8 +190,8 @@ static int
 dissect_nlm_test(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree, int version)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
-       dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_exclusive, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
+       dissect_rpc_bool(tvb, tree, hf_nlm_exclusive, offset);
        offset += 4;
        offset = dissect_lock(tvb, pinfo, tree, version, offset);
        return offset;
@@ -201,12 +201,12 @@ static int
 dissect_nlm_lock(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree,int version)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_block, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_exclusive, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nlm_block, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nlm_exclusive, offset);
        offset = dissect_lock(tvb, pinfo, tree, version, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_reclaim, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nlm_state, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nlm_reclaim, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nlm_state, offset);
        return offset;
 }
 
@@ -214,9 +214,9 @@ static int
 dissect_nlm_cancel(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree,int version)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_block, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_exclusive, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nlm_block, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nlm_exclusive, offset);
        offset = dissect_lock(tvb, pinfo, tree, version, offset);
        return offset;
 }
@@ -225,7 +225,7 @@ static int
 dissect_nlm_unlock(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree,int version)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
        offset = dissect_lock(tvb, pinfo, tree, version, offset);
        return offset;
 }
@@ -234,21 +234,21 @@ static int
 dissect_nlm_granted(tvbuff_t *tvb, int offset, packet_info *pinfo,
     proto_tree *tree,int version)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_exclusive, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nlm_exclusive, offset);
        offset = dissect_lock(tvb, pinfo, tree, version, offset);
        return offset;
 }
 
 
 static int
-dissect_nlm_test_res(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nlm_test_res(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
     proto_tree *tree,int version)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
 
        if (tree) {
                lock_item = proto_tree_add_item(tree, hf_nlm_test_stat, tvb,
@@ -258,7 +258,7 @@ dissect_nlm_test_res(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                ett_nlm_lock);
        }
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, hf_nlm_test_stat_stat,
+       offset = dissect_rpc_uint32(tvb, lock_tree, hf_nlm_test_stat_stat,
            offset);
 
        /* last structure is optional, only supplied for stat==1 (LOCKED) */
@@ -274,23 +274,23 @@ dissect_nlm_test_res(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                ett_nlm_lock);
        }
 
-       offset = dissect_rpc_bool(tvb, pinfo, lock_tree, hf_nlm_exclusive,
+       offset = dissect_rpc_bool(tvb, lock_tree, hf_nlm_exclusive,
            offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, hf_nlm_lock_svid,
+       offset = dissect_rpc_uint32(tvb, lock_tree, hf_nlm_lock_svid,
            offset);
-       offset = dissect_rpc_data(tvb, pinfo, lock_tree, hf_nlm_lock_owner,
+       offset = dissect_rpc_data(tvb, lock_tree, hf_nlm_lock_owner,
            offset);
 
        if (version == 4) {
-               offset = dissect_rpc_uint64(tvb, pinfo, lock_tree,
+               offset = dissect_rpc_uint64(tvb, lock_tree,
                    hf_nlm_lock_l_offset64, offset);
-               offset = dissect_rpc_uint64(tvb, pinfo, lock_tree,
+               offset = dissect_rpc_uint64(tvb, lock_tree,
                    hf_nlm_lock_l_len64, offset);
        }
        else {
-               offset = dissect_rpc_uint32(tvb, pinfo, lock_tree,
+               offset = dissect_rpc_uint32(tvb, lock_tree,
                    hf_nlm_lock_l_offset, offset);
-               offset = dissect_rpc_uint32(tvb, pinfo, lock_tree,
+               offset = dissect_rpc_uint32(tvb, lock_tree,
                    hf_nlm_lock_l_len, offset);
        }
 
@@ -300,12 +300,12 @@ dissect_nlm_test_res(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 static int
 dissect_nlm_share(tvbuff_t *tvb, int offset, packet_info *pinfo,
-    proto_tree *tree,int version)
+    proto_tree *tree,int version _U_)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
 
        if (tree) {
                lock_item = proto_tree_add_item(tree, hf_nlm_share, tvb,
@@ -315,39 +315,39 @@ dissect_nlm_share(tvbuff_t *tvb, int offset, packet_info *pinfo,
                                ett_nlm_lock);
        }
 
-       offset = dissect_rpc_string(tvb,pinfo,lock_tree,
+       offset = dissect_rpc_string(tvb,lock_tree,
                        hf_nlm_lock_caller_name, offset, NULL);
        
        offset = dissect_nfs_fh3(tvb, offset, pinfo, lock_tree, "fh");
 
-       offset = dissect_rpc_data(tvb, pinfo, lock_tree, hf_nlm_lock_owner, offset);
+       offset = dissect_rpc_data(tvb, lock_tree, hf_nlm_lock_owner, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, hf_nlm_share_mode, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, hf_nlm_share_access, offset);
+       offset = dissect_rpc_uint32(tvb, lock_tree, hf_nlm_share_mode, offset);
+       offset = dissect_rpc_uint32(tvb, lock_tree, hf_nlm_share_access, offset);
 
 
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_nlm_reclaim, offset);
+       offset = dissect_rpc_bool(tvb, tree, hf_nlm_reclaim, offset);
        return offset;
 }
 
 static int
-dissect_nlm_shareres(tvbuff_t *tvb, int offset, packet_info *pinfo,
-    proto_tree *tree, int version)
+dissect_nlm_shareres(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
+    proto_tree *tree, int version _U_)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nlm_stat, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nlm_sequence, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nlm_stat, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nlm_sequence, offset);
        return offset;
 }
 
 static int
-dissect_nlm_freeall(tvbuff_t *tvb, int offset, packet_info *pinfo,
-    proto_tree *tree,int version)
+dissect_nlm_freeall(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
+    proto_tree *tree,int version _U_)
 {
-       offset = dissect_rpc_string(tvb,pinfo,tree,
+       offset = dissect_rpc_string(tvb,tree,
                        hf_nlm_share_name, offset, NULL);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nlm_stat, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nlm_stat, offset);
 
        return offset;
 }
@@ -358,11 +358,11 @@ dissect_nlm_freeall(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* This function is identical for all NLM protocol versions (1-4)*/
 static int
-dissect_nlm_gen_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_nlm_gen_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
     proto_tree *tree)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_nlm_cookie, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_nlm_stat, offset);
+       offset = dissect_rpc_data(tvb, tree, hf_nlm_cookie, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_nlm_stat, offset);
        return offset;
 }
 
index baab7495c7bb2007d9ea73545b283d4decb5820e..340e46f5b3b340c0c69271c883ec2edda2fdbd0d 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-pcnfsd.c
  * Routines for PCNFSD dissection
  *
- * $Id: packet-pcnfsd.c,v 1.5 2002/01/30 23:08:26 guy Exp $
+ * $Id: packet-pcnfsd.c,v 1.6 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -77,7 +77,7 @@ pcnfsd_decode_obscure(char* data, int len)
 
 /* "NFS Illustrated" 14.7.13 */
 int
-dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
        int     newoffset;
@@ -88,7 +88,7 @@ dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_item      *password_item = NULL;
        proto_tree      *password_tree = NULL;
 
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                hf_pcnfsd_auth_client, offset, NULL);
 
        if (tree) {
@@ -98,7 +98,7 @@ dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        ident_tree = proto_item_add_subtree(
                                ident_item, ett_pcnfsd_auth_ident);
        }
-       newoffset = dissect_rpc_string(tvb, pinfo, ident_tree,
+       newoffset = dissect_rpc_string(tvb, ident_tree,
                hf_pcnfsd_auth_ident_obscure, offset, &ident);
        if (ident_item) {
                proto_item_set_len(ident_item, newoffset-offset);
@@ -129,7 +129,7 @@ dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
                        password_tree = proto_item_add_subtree(
                                password_item, ett_pcnfsd_auth_password);
        }
-       newoffset = dissect_rpc_string(tvb, pinfo, password_tree,
+       newoffset = dissect_rpc_string(tvb, password_tree,
                hf_pcnfsd_auth_password_obscure, offset, &password);
        if (password_item) {
                proto_item_set_len(password_item, newoffset-offset);
@@ -153,7 +153,7 @@ dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
        offset = newoffset;
 
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                hf_pcnfsd_comment, offset, NULL);
 
        return offset;
@@ -162,7 +162,7 @@ dissect_pcnfsd2_auth_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 /* "NFS Illustrated" 14.7.13 */
 int
-dissect_pcnfsd2_auth_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_pcnfsd2_auth_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
        int     gids_count;
@@ -170,9 +170,9 @@ dissect_pcnfsd2_auth_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        proto_tree      *gtree = NULL;
        int     gids_i;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_pcnfsd_status, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_pcnfsd_uid, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_pcnfsd_gid, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_pcnfsd_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_pcnfsd_uid, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_pcnfsd_gid, offset);
        gids_count = tvb_get_ntohl(tvb,offset+0);
        if (tree) {
                gitem = proto_tree_add_text(tree, tvb,
@@ -184,14 +184,14 @@ dissect_pcnfsd2_auth_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
        }
        offset += 4;
        for (gids_i = 0 ; gids_i < gids_count ; gids_i++) {
-               offset = dissect_rpc_uint32(tvb, pinfo, gtree,
+               offset = dissect_rpc_uint32(tvb, gtree,
                                hf_pcnfsd_gid, offset);
        }
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                 hf_pcnfsd_homedir, offset, NULL);
        /* should be signed int32 */
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_pcnfsd_def_umask, offset);
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_uint32(tvb, tree, hf_pcnfsd_def_umask, offset);
+       offset = dissect_rpc_string(tvb, tree,
                 hf_pcnfsd_comment, offset, NULL);
 
        return offset;
index a73d871ac5fc980b1a9fdb4887d137ac21565ed5..0fb59d0048de1ee54ed189e48c11315c47a24475 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-portmap.c
  * Routines for portmap dissection
  *
- * $Id: packet-portmap.c,v 1.33 2002/01/20 22:12:27 guy Exp $
+ * $Id: packet-portmap.c,v 1.34 2002/04/03 13:24:12 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -68,7 +68,7 @@ static gint ett_portmap_entry = -1;
 
 
 /* Dissect a getport call */
-int dissect_getport_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
+int dissect_getport_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
        guint32 proto;
@@ -94,16 +94,16 @@ int dissect_getport_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        return offset+16;
 }
 
-int dissect_getport_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
+int dissect_getport_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_portmap_port,
+       offset = dissect_rpc_uint32(tvb, tree, hf_portmap_port,
            offset);
        return offset;
 }
 
 /* Dissect a 'set' call */
-int dissect_set_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
+int dissect_set_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
        guint32 proto;
@@ -130,7 +130,7 @@ int dissect_set_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 /* Dissect a 'unset' call */
-int dissect_unset_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
+int dissect_unset_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
        guint32 proto;
@@ -156,16 +156,16 @@ int dissect_unset_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
        return offset+16;
 }
 
-int dissect_set_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
+int dissect_set_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
-       offset = dissect_rpc_bool(tvb, pinfo, tree, hf_portmap_answer,
+       offset = dissect_rpc_bool(tvb, tree, hf_portmap_answer,
            offset);
        return offset;
 }
 
 static int
-dissect_dump_entry(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_dump_entry(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
        int prog, version, proto, port;
@@ -301,7 +301,7 @@ static const vsff portmap2_proc[] = {
 
 /* RFC 1833, Page 3 */
 static int
-dissect_rpcb(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_rpcb(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* rpcb_item = NULL;
        proto_tree* rpcb_tree = NULL;
@@ -322,13 +322,13 @@ dissect_rpcb(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
                        "Program: %s (%u)", rpc_prog_name(prog), prog);
        offset += 4;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, rpcb_tree,
+       offset = dissect_rpc_uint32(tvb, rpcb_tree,
            hf_portmap_rpcb_version, offset);
-       offset = dissect_rpc_string(tvb, pinfo, rpcb_tree,
+       offset = dissect_rpc_string(tvb, rpcb_tree,
            hf_portmap_rpcb_netid, offset, NULL);
-       offset = dissect_rpc_string(tvb, pinfo, rpcb_tree,
+       offset = dissect_rpc_string(tvb, rpcb_tree,
            hf_portmap_rpcb_addr, offset, NULL);
-       offset = dissect_rpc_string(tvb, pinfo, rpcb_tree,
+       offset = dissect_rpc_string(tvb, rpcb_tree,
            hf_portmap_rpcb_owner, offset, NULL);
 
        /* now we know, that rpcb is shorter */
@@ -352,10 +352,10 @@ int dissect_rpcb3_getaddr_call(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 
 /* RFC 1833, Page 7 */
-int dissect_rpcb3_getaddr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
+int dissect_rpcb3_getaddr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
            hf_portmap_uaddr, offset, NULL);
 
        return offset;
@@ -371,11 +371,11 @@ int dissect_rpcb3_dump_reply(tvbuff_t *tvb, int offset, packet_info *pinfo,
 }
 
 /* RFC 1833, page 4 */
-int dissect_rpcb_rmtcallres(tvbuff_t *tvb, int offset, packet_info *pinfo,
+int dissect_rpcb_rmtcallres(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
        proto_tree *tree)
 {
        /* Dissect the remote universal address. */
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
            hf_portmap_rpcb_addr, offset, NULL);
 
        /* Dissect the result of this procedure.
index 7f807f676f804e6011822775b111f31569822fe1..3bff439dd5e683ac2c7c181d8aa18514365b2466 100644 (file)
@@ -2,7 +2,7 @@
  * Routines for rpc dissection
  * Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de>
  * 
- * $Id: packet-rpc.c,v 1.89 2002/04/01 23:56:41 guy Exp $
+ * $Id: packet-rpc.c,v 1.90 2002/04/03 13:24:12 girlich Exp $
  * 
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -426,7 +426,7 @@ rpc_roundup(unsigned int a)
 
 
 int
-dissect_rpc_bool(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+dissect_rpc_bool(tvbuff_t *tvb, proto_tree *tree,
 int hfindex, int offset)
 {
        if (tree)
@@ -436,7 +436,7 @@ int hfindex, int offset)
 
 
 int
-dissect_rpc_uint32(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+dissect_rpc_uint32(tvbuff_t *tvb, proto_tree *tree,
 int hfindex, int offset)
 {
        if (tree)
@@ -446,7 +446,7 @@ int hfindex, int offset)
 
 
 int
-dissect_rpc_uint64(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+dissect_rpc_uint64(tvbuff_t *tvb, proto_tree *tree,
 int hfindex, int offset)
 {
        header_field_info       *hfinfo;
@@ -461,7 +461,7 @@ int hfindex, int offset)
 
 
 static int
-dissect_rpc_opaque_data(tvbuff_t *tvb, int offset, packet_info *pinfo,
+dissect_rpc_opaque_data(tvbuff_t *tvb, int offset,
     proto_tree *tree, int hfindex, gboolean string_data,
     char **string_buffer_ret)
 {
@@ -636,20 +636,20 @@ dissect_rpc_opaque_data(tvbuff_t *tvb, int offset, packet_info *pinfo,
 
 
 int
-dissect_rpc_string(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+dissect_rpc_string(tvbuff_t *tvb, proto_tree *tree,
     int hfindex, int offset, char **string_buffer_ret)
 {
-       offset = dissect_rpc_opaque_data(tvb, offset, pinfo, tree,
+       offset = dissect_rpc_opaque_data(tvb, offset, tree,
            hfindex, TRUE, string_buffer_ret);
        return offset;
 }
 
 
 int
-dissect_rpc_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+dissect_rpc_data(tvbuff_t *tvb, proto_tree *tree,
     int hfindex, int offset)
 {
-       offset = dissect_rpc_opaque_data(tvb, offset, pinfo, tree, hfindex,
+       offset = dissect_rpc_opaque_data(tvb, offset, tree, hfindex,
            FALSE, NULL);
 
        return offset;
@@ -702,7 +702,7 @@ dissect_rpc_array(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
 
        lock_tree = proto_item_add_subtree(lock_item, ett_rpc_array);   
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_uint32(tvb, lock_tree,
                        hf_rpc_array_len, offset);
 
        while (num--) {
@@ -714,7 +714,7 @@ dissect_rpc_array(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
 }
 
 static int
-dissect_rpc_authunix_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset)
+dissect_rpc_authunix_cred(tvbuff_t* tvb, proto_tree* tree, int offset)
 {
        guint stamp;
        guint uid;
@@ -731,7 +731,7 @@ dissect_rpc_authunix_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, i
                        offset+0, 4, stamp);
        offset += 4;
 
-       offset = dissect_rpc_string(tvb, pinfo, tree,
+       offset = dissect_rpc_string(tvb, tree,
                        hf_rpc_auth_machinename, offset, NULL);
 
        uid = tvb_get_ntohl(tvb,offset+0);
@@ -768,7 +768,7 @@ dissect_rpc_authunix_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, i
 }
 
 static int
-dissect_rpc_authgss_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset)
+dissect_rpc_authgss_cred(tvbuff_t* tvb, proto_tree* tree, int offset)
 {
        guint agc_v;
        guint agc_proc;
@@ -799,14 +799,14 @@ dissect_rpc_authgss_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, in
                                    tvb, offset+0, 4, agc_svc);
        offset += 4;
        
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_rpc_authgss_ctx,
+       offset = dissect_rpc_data(tvb, tree, hf_rpc_authgss_ctx,
                        offset);
        
        return offset;
 }
 
 static int
-dissect_rpc_authdes_desblock(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
+dissect_rpc_authdes_desblock(tvbuff_t *tvb, proto_tree *tree,
 int hfindex, int offset)
 {
        guint32 value_low;
@@ -825,7 +825,7 @@ int hfindex, int offset)
 }
 
 static int
-dissect_rpc_authdes_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset)
+dissect_rpc_authdes_cred(tvbuff_t* tvb, proto_tree* tree, int offset)
 {
        guint adc_namekind;
        guint window = 0;
@@ -840,9 +840,9 @@ dissect_rpc_authdes_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, in
        switch(adc_namekind)
        {
        case AUTHDES_NAMEKIND_FULLNAME:
-               offset = dissect_rpc_string(tvb, pinfo, tree, 
+               offset = dissect_rpc_string(tvb, tree, 
                        hf_rpc_authdes_netname, offset, NULL);
-               offset = dissect_rpc_authdes_desblock(tvb, pinfo, tree,
+               offset = dissect_rpc_authdes_desblock(tvb, tree,
                        hf_rpc_authdes_convkey, offset);
                window = tvb_get_ntohl(tvb, offset+0);
                proto_tree_add_uint(tree, hf_rpc_authdes_window, tvb, offset+0, 4,
@@ -862,7 +862,7 @@ dissect_rpc_authdes_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, in
 }
 
 static int
-dissect_rpc_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset)
+dissect_rpc_cred(tvbuff_t* tvb, proto_tree* tree, int offset)
 {
        guint flavor;
        guint length;
@@ -885,7 +885,7 @@ dissect_rpc_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
 
                switch (flavor) {
                case AUTH_UNIX:
-                       dissect_rpc_authunix_cred(tvb, pinfo, ctree, offset+8);
+                       dissect_rpc_authunix_cred(tvb, ctree, offset+8);
                        break;
                /*
                case AUTH_SHORT:
@@ -893,11 +893,11 @@ dissect_rpc_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
                break;
                */
                case AUTH_DES:
-                       dissect_rpc_authdes_cred(tvb, pinfo, ctree, offset+8);
+                       dissect_rpc_authdes_cred(tvb, ctree, offset+8);
                        break;
                        
                case RPCSEC_GSS:
-                       dissect_rpc_authgss_cred(tvb, pinfo, ctree, offset+8);
+                       dissect_rpc_authgss_cred(tvb, ctree, offset+8);
                        break;
                default:
                        if (length)
@@ -915,7 +915,7 @@ dissect_rpc_cred(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
  * verifier we're decoding (CALL or REPLY).
  */
 static int
-dissect_rpc_verf(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset, int msg_type)
+dissect_rpc_verf(tvbuff_t* tvb, proto_tree* tree, int offset, int msg_type)
 {
        guint flavor;
        guint length;
@@ -938,7 +938,7 @@ dissect_rpc_verf(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
                case AUTH_UNIX:
                        proto_tree_add_uint(vtree, hf_rpc_auth_length, tvb,
                                            offset+4, 4, length);
-                       dissect_rpc_authunix_cred(tvb, pinfo, vtree, offset+8);
+                       dissect_rpc_authunix_cred(tvb, vtree, offset+8);
                        break;
                case AUTH_DES:
                        proto_tree_add_uint(vtree, hf_rpc_auth_length, tvb,
@@ -948,7 +948,7 @@ dissect_rpc_verf(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
                        {
                                guint window;
 
-                               dissect_rpc_authdes_desblock(tvb, pinfo, vtree,
+                               dissect_rpc_authdes_desblock(tvb, vtree,
                                        hf_rpc_authdes_timestamp, offset+8);
                                window = tvb_get_ntohl(tvb, offset+16);
                                proto_tree_add_uint(vtree, hf_rpc_authdes_windowverf, tvb, 
@@ -959,7 +959,7 @@ dissect_rpc_verf(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
                                /* must be an RPC_REPLY */
                                guint nickname;
 
-                               dissect_rpc_authdes_desblock(tvb, pinfo, vtree,
+                               dissect_rpc_authdes_desblock(tvb, vtree,
                                        hf_rpc_authdes_timeverf, offset+8);
                                nickname = tvb_get_ntohl(tvb, offset+16);
                                proto_tree_add_uint(vtree, hf_rpc_authdes_nickname, tvb, 
@@ -967,7 +967,7 @@ dissect_rpc_verf(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
                        }
                        break;
                case RPCSEC_GSS:
-                       dissect_rpc_data(tvb, pinfo, vtree,
+                       dissect_rpc_data(tvb, vtree,
                                hf_rpc_authgss_checksum, offset+4);
                        break;
                default:
@@ -985,19 +985,19 @@ dissect_rpc_verf(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset
 }
 
 static int
-dissect_rpc_authgss_initarg(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset)
+dissect_rpc_authgss_initarg(tvbuff_t* tvb, proto_tree* tree, int offset)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_rpc_authgss_token,
+       offset = dissect_rpc_data(tvb, tree, hf_rpc_authgss_token,
                        offset);
        return offset;
 }
 
 static int
-dissect_rpc_authgss_initres(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, int offset)
+dissect_rpc_authgss_initres(tvbuff_t* tvb, proto_tree* tree, int offset)
 {
        int major, minor, window;
        
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_rpc_authgss_ctx,
+       offset = dissect_rpc_data(tvb, tree, hf_rpc_authgss_ctx,
                        offset);
        
        major = tvb_get_ntohl(tvb,offset+0);
@@ -1018,7 +1018,7 @@ dissect_rpc_authgss_initres(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree,
                                    offset+0, 4, window);
        offset += 4;
 
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_rpc_authgss_token,
+       offset = dissect_rpc_data(tvb, tree, hf_rpc_authgss_token,
                        offset);
 
        return offset;
@@ -1080,16 +1080,16 @@ dissect_rpc_authgss_integ_data(tvbuff_t *tvb, packet_info *pinfo,
                                      dissect_function, progname);
        }
        offset += length - 4;
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_rpc_authgss_checksum,
+       offset = dissect_rpc_data(tvb, tree, hf_rpc_authgss_checksum,
                        offset);
        return offset;
 }
 
 
 static int
-dissect_rpc_authgss_priv_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
+dissect_rpc_authgss_priv_data(tvbuff_t *tvb, proto_tree *tree, int offset)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, hf_rpc_authgss_data,
+       offset = dissect_rpc_data(tvb, tree, hf_rpc_authgss_data,
                        offset);
        return offset;
 }
@@ -1217,7 +1217,7 @@ dissect_rpc_indir_call(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
                   Happens only with strange program versions or
                   non-existing dissectors.
                   Just show the arguments as opaque data. */
-               offset = dissect_rpc_data(tvb, pinfo, tree, args_id,
+               offset = dissect_rpc_data(tvb, tree, args_id,
                    offset);
                return offset;
        }
@@ -1287,7 +1287,7 @@ dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
                /* We haven't seen an RPC call for that conversation,
                   so we can't check for a reply to that call.
                   Just show the reply stuff as opaque data. */
-               offset = dissect_rpc_data(tvb, pinfo, tree, result_id,
+               offset = dissect_rpc_data(tvb, tree, result_id,
                    offset);
                return offset;
        }
@@ -1300,7 +1300,7 @@ dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
                /* The XID doesn't match a call from that
                   conversation, so it's probably not an RPC reply.
                   Just show the reply stuff as opaque data. */
-               offset = dissect_rpc_data(tvb, pinfo, tree, result_id,
+               offset = dissect_rpc_data(tvb, tree, result_id,
                    offset);
                return offset;
        }
@@ -1338,7 +1338,7 @@ dissect_rpc_indir_reply(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
        if (dissect_function == NULL) {
                /* We don't know how to dissect the reply procedure.
                   Just show the reply stuff as opaque data. */
-               offset = dissect_rpc_data(tvb, pinfo, tree, result_id,
+               offset = dissect_rpc_data(tvb, tree, result_id,
                    offset);
                return offset;
        }
@@ -1782,8 +1782,8 @@ dissect_rpc_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
 
                offset += 16;
 
-               offset = dissect_rpc_cred(tvb, pinfo, rpc_tree, offset);
-               offset = dissect_rpc_verf(tvb, pinfo, rpc_tree, offset, msg_type);
+               offset = dissect_rpc_cred(tvb, rpc_tree, offset);
+               offset = dissect_rpc_verf(tvb, rpc_tree, offset, msg_type);
 
                /* pass rpc_info to subdissectors */
                rpc_call->request=TRUE;
@@ -1905,7 +1905,7 @@ dissect_rpc_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
                offset += 4;
 
                if (reply_state == MSG_ACCEPTED) {
-                       offset = dissect_rpc_verf(tvb, pinfo, rpc_tree, offset, msg_type);
+                       offset = dissect_rpc_verf(tvb, rpc_tree, offset, msg_type);
                        accept_state = tvb_get_ntohl(tvb,offset+0);
                        if (rpc_tree) {
                                proto_tree_add_uint(rpc_tree, hf_rpc_state_accept, tvb,
@@ -2047,11 +2047,11 @@ dissect_rpc_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
                case RPCSEC_GSS_CONTINUE_INIT:
                        if (msg_type == RPC_CALL) {
                                offset = dissect_rpc_authgss_initarg(tvb,
-                                       pinfo, ptree, offset);
+                                       ptree, offset);
                        }
                        else {
                                offset = dissect_rpc_authgss_initres(tvb,
-                                       pinfo, ptree, offset);
+                                       ptree, offset);
                        }
                        break;
 
@@ -2070,7 +2070,7 @@ dissect_rpc_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
                        }
                        else if (gss_svc == RPCSEC_GSS_SVC_PRIVACY) {
                                offset = dissect_rpc_authgss_priv_data(tvb,
-                                               pinfo, ptree, offset);
+                                               ptree, offset);
                        }
                        break;
 
@@ -2287,7 +2287,6 @@ dissect_rpc_fragment(tvbuff_t *tvb, int offset, packet_info *pinfo,
        conversation_t *conversation;
        fragment_data *ipfd_head;
        tvbuff_t *rec_tvb;
-       fragment_data *ipfd;
 
        /*
         * Get the record mark.
index c4d24b7a030c46f35727ec825fd6540aedddb956..143d73d33780f6e5f2caabe1ba055b4862010e90 100644 (file)
@@ -1,6 +1,6 @@
 /* packet-rpc.h
  *
- * $Id: packet-rpc.h,v 1.34 2002/04/02 00:18:53 guy Exp $
+ * $Id: packet-rpc.h,v 1.35 2002/04/03 13:24:13 girlich Exp $
  *
  * (c) 1999 Uwe Girlich
  *
@@ -113,20 +113,20 @@ extern char *rpc_prog_name(guint32 prog);
 extern char *rpc_proc_name(guint32 prog, guint32 vers, guint32 proc);
 
 extern unsigned int rpc_roundup(unsigned int a);
-extern int dissect_rpc_bool(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_bool(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
-extern int dissect_rpc_string(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_string(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset, char **string_buffer_ret);
-extern int dissect_rpc_data(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_data(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
 extern int dissect_rpc_list(tvbuff_t *tvb, packet_info *pinfo,
        proto_tree *tree, int offset, dissect_function_t *rpc_list_dissector);
 extern int dissect_rpc_array(tvbuff_t *tvb, packet_info *pinfo,
        proto_tree *tree, int offset, dissect_function_t *rpc_array_dissector,
        int hfindex);
-extern int dissect_rpc_uint32(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_uint32(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
-extern int dissect_rpc_uint64(tvbuff_t *tvb, packet_info *pinfo,
+extern int dissect_rpc_uint64(tvbuff_t *tvb,
        proto_tree *tree, int hfindex, int offset);
 
 extern int dissect_rpc_indir_call(tvbuff_t *tvb, packet_info *pinfo,
index 3ad363ec4a5dcd62d1f583bebb37c462ad49356d..6616711a7f60b6b322fc11808d1d4da3c2528ac8 100644 (file)
@@ -2,7 +2,7 @@
  * Routines for rquota dissection
  * Copyright 2001, Mike Frisch <frisch@hummingbird.com>
  *
- * $Id: packet-rquota.c,v 1.6 2002/01/24 09:20:51 guy Exp $
+ * $Id: packet-rquota.c,v 1.7 2002/04/03 13:24:13 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -70,7 +70,7 @@ static const value_string names_rquota_status[] =
 
 
 static int
-dissect_rquota(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_rquota(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
 
        proto_item *lock_item = NULL;
@@ -81,63 +81,63 @@ dissect_rquota(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
 
        lock_tree = proto_item_add_subtree(lock_item, ett_rquota_rquota);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_bsize, offset);
 
-       offset = dissect_rpc_bool(tvb, pinfo, lock_tree,
+       offset = dissect_rpc_bool(tvb, lock_tree,
                        hf_rquota_active, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_bhardlimit, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_bsoftlimit, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_curblocks, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_fhardlimit, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_fsoftlimit, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_curfiles, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_btimeleft, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_rquota_ftimeleft, offset);
 
        return offset;
 }
 
 static int
-dissect_getquota_result(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_getquota_result(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        gint32  status;
 
        status = tvb_get_ntohl(tvb, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_rquota_status, offset);
 
        if (status==Q_OK) {
-               offset = dissect_rquota(tvb, offset, pinfo, tree);
+               offset = dissect_rquota(tvb, offset, tree);
        }
 
        return offset;
 }
 
 static int
-dissect_getquota_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_getquota_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_rquota_pathp, offset, NULL);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_rquota_uid, offset);
 
        return offset;
index dbe2c1d83f9bdbff39608d04a9f541100ba75cc4..7567cc18dc0d31da1a41e56ed40330c5b639a0ba 100644 (file)
@@ -1,6 +1,6 @@
 /* packet-rwall.c
  *
- * $Id: packet-rwall.c,v 1.4 2001/06/18 02:17:52 guy Exp $
+ * $Id: packet-rwall.c,v 1.5 2002/04/03 13:24:13 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -40,9 +40,9 @@ static int hf_rwall_message = -1;
 static gint ett_rwall = -1;
 
 static int
-dissect_rwall_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_rwall_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_rwall_message, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_rwall_message, offset, NULL);
        
        return offset;
 }
index 607adadbfa5688c026d1b401cad3bd4a813381ba..52671dafd10e7ebd6f863656527bec9ebd5be8fb 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-spray.c
  * 2001  Ronnie Sahlberg   <See AUTHORS for email>
  *
- * $Id: packet-spray.c,v 1.7 2002/01/24 09:20:51 guy Exp $
+ * $Id: packet-spray.c,v 1.8 2002/04/03 13:24:13 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -47,12 +47,12 @@ static gint ett_spray_clock = -1;
 
 
 static int
-dissect_get_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_get_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* lock_item = NULL;
        proto_tree* lock_tree = NULL;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_spray_counter, offset);
 
        lock_item = proto_tree_add_item(tree, hf_spray_clock, tvb,
@@ -60,19 +60,19 @@ dissect_get_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tre
 
        lock_tree = proto_item_add_subtree(lock_item, ett_spray_clock);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_spray_sec, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_spray_usec, offset);
 
        return offset;
 }
 
 static int
-dissect_spray_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_spray_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_data(tvb, pinfo, tree, 
+       offset = dissect_rpc_data(tvb, tree, 
                        hf_spray_sprayarr, offset);
 
        return offset;
index a177713971fc1bd873739209d7d6923ffd185db1..065ecf7a4a1d6127205c6334716b5d5305400800 100644 (file)
@@ -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;
index a55174641e79b201d56122f07b05eb2c18b6734e..b659018d3067b8200f4a480c467d8eee17b17589 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-stat.c
  * Routines for stat dissection
  *
- * $Id: packet-stat.c,v 1.14 2002/03/05 11:04:15 guy Exp $
+ * $Id: packet-stat.c,v 1.15 2002/04/03 13:24:13 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -109,18 +109,18 @@ mon_id_len(tvbuff_t *tvb, int offset)
 }
 
 static int
-dissect_stat_stat(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_stat(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if (tree)
        {
-               offset = dissect_rpc_string(tvb,pinfo,tree,hf_stat_mon_name,offset,NULL);
+               offset = dissect_rpc_string(tvb,tree,hf_stat_mon_name,offset,NULL);
        }
 
        return offset;
 }
 
 static int
-dissect_stat_stat_res(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_stat_res(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* sub_item = NULL;
        proto_tree* sub_tree = NULL;
@@ -135,11 +135,11 @@ dissect_stat_stat_res(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
        }
 
        res = tvb_get_ntohl(tvb, offset);
-       offset = dissect_rpc_uint32(tvb,pinfo,sub_tree,hf_stat_stat_res_res,offset);
+       offset = dissect_rpc_uint32(tvb,sub_tree,hf_stat_stat_res_res,offset);
 
        if (res==STAT_SUCC) {
                state = tvb_get_ntohl(tvb, offset);
-               offset = dissect_rpc_uint32(tvb,pinfo,sub_tree,hf_stat_stat_res_state,offset);
+               offset = dissect_rpc_uint32(tvb,sub_tree,hf_stat_stat_res_state,offset);
        } else {
                offset += 4;
        }
@@ -148,7 +148,7 @@ dissect_stat_stat_res(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 }      
 
 static int
-dissect_stat_my_id(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_my_id(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
        proto_item* sub_item = NULL;
        proto_tree* sub_tree = NULL;
@@ -160,16 +160,16 @@ dissect_stat_my_id(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
                        sub_tree = proto_item_add_subtree(sub_item, ett_stat_my_id);
        }
 
-       offset = dissect_rpc_string(tvb,pinfo,sub_tree,hf_stat_my_id_hostname,offset,NULL);
-       offset = dissect_rpc_uint32(tvb,pinfo,sub_tree,hf_stat_my_id_prog,offset);
-       offset = dissect_rpc_uint32(tvb,pinfo,sub_tree,hf_stat_my_id_vers,offset);
-       offset = dissect_rpc_uint32(tvb,pinfo,sub_tree,hf_stat_my_id_proc,offset);
+       offset = dissect_rpc_string(tvb,sub_tree,hf_stat_my_id_hostname,offset,NULL);
+       offset = dissect_rpc_uint32(tvb,sub_tree,hf_stat_my_id_prog,offset);
+       offset = dissect_rpc_uint32(tvb,sub_tree,hf_stat_my_id_vers,offset);
+       offset = dissect_rpc_uint32(tvb,sub_tree,hf_stat_my_id_proc,offset);
 
        return offset;
 }
 
 static int
-dissect_stat_mon_id(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_mon_id(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* sub_item = NULL;
        proto_tree* sub_tree = NULL;
@@ -182,15 +182,15 @@ dissect_stat_mon_id(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
        }
 
 
-       offset = dissect_rpc_string(tvb,pinfo,sub_tree,hf_stat_mon_id_name,offset,NULL);
+       offset = dissect_rpc_string(tvb,sub_tree,hf_stat_mon_id_name,offset,NULL);
 
-       offset = dissect_stat_my_id(tvb,offset,pinfo,sub_tree);
+       offset = dissect_stat_my_id(tvb,offset,sub_tree);
 
        return offset;
 }
 
 static int
-dissect_stat_priv(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_priv(tvbuff_t *tvb, int offset, proto_tree *tree)
 {
        proto_tree_add_item(tree, hf_stat_priv, tvb, offset, 16, FALSE);
        offset += 16;
@@ -204,20 +204,20 @@ dissect_stat_mon(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
        
        offset = dissect_stat_mon_id(tvb,offset,pinfo,tree);
 
-       offset = dissect_stat_priv(tvb,offset,pinfo,tree);
+       offset = dissect_stat_priv(tvb,offset,tree);
        return offset;
 }
 
 static int
-dissect_stat_state(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_state(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb,pinfo,tree,hf_stat_state,offset);
+       offset = dissect_rpc_uint32(tvb,tree,hf_stat_state,offset);
 
        return offset;
 }      
 
 static int
-dissect_stat_notify(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_notify(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item* sub_item = NULL;
        proto_tree* sub_tree = NULL;
@@ -230,9 +230,9 @@ dissect_stat_notify(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
                        sub_tree = proto_item_add_subtree(sub_item, ett_stat_stat_chge);
        }
 
-       offset = dissect_rpc_string(tvb,pinfo,sub_tree,hf_stat_mon_id_name,offset,NULL);
+       offset = dissect_rpc_string(tvb,sub_tree,hf_stat_mon_id_name,offset,NULL);
        
-       offset = dissect_rpc_uint32(tvb,pinfo,tree,hf_stat_state,offset);
+       offset = dissect_rpc_uint32(tvb,tree,hf_stat_state,offset);
 
        if(sub_item)
                proto_item_set_len(sub_item, offset - start_offset);
@@ -241,9 +241,9 @@ dissect_stat_notify(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
 }
 
 static int
-dissect_stat_umon_all(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_stat_umon_all(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_stat_my_id(tvb,offset,pinfo,tree);
+       offset = dissect_stat_my_id(tvb,offset,tree);
 
        return offset;
 }
index 4a41cd798c20e01bcfb9237d43338bafaac4ced4..c80859f4647b991b4314dd72edb0e6278d390962 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-ypbind.c
  * Routines for ypbind dissection
  *
- * $Id: packet-ypbind.c,v 1.10 2002/04/02 01:32:46 guy Exp $
+ * $Id: packet-ypbind.c,v 1.11 2002/04/03 13:24:13 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -51,10 +51,10 @@ static gint ett_ypbind = -1;
 
 
 static int
-dissect_ypbind_domain_v2_request(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypbind_domain_v2_request(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        /* domain */
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_ypbind_domain, offset, NULL);
 
        return offset;
@@ -79,13 +79,13 @@ static const value_string error_vals[] = {
 };
 
 static int
-dissect_ypbind_domain_v2_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypbind_domain_v2_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 type;
 
        /* response type */
        type=tvb_get_ntohl(tvb, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypbind_resp_type, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypbind_resp_type, offset);
 
        switch(type){
        case YPBIND_RESP_TYPE_SUCC_VAL:
@@ -95,13 +95,13 @@ dissect_ypbind_domain_v2_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, pr
                offset += 4;
 
                /* port */
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+               offset = dissect_rpc_uint32(tvb, tree, 
                                hf_ypbind_port, offset);
                
                break;
        case YPBIND_RESP_TYPE_FAIL_VAL:
                /* error */
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+               offset = dissect_rpc_uint32(tvb, tree, 
                                hf_ypbind_resp_type, offset);
                break;
        }
@@ -110,10 +110,10 @@ dissect_ypbind_domain_v2_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, pr
 }
 
 static int
-dissect_ypbind_setdomain_v2_request(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypbind_setdomain_v2_request(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        /* domain */
-       offset = dissect_rpc_string(tvb, pinfo, tree, 
+       offset = dissect_rpc_string(tvb, tree, 
                        hf_ypbind_domain, offset, NULL);
 
        /* ip address */
@@ -122,11 +122,11 @@ dissect_ypbind_setdomain_v2_request(tvbuff_t *tvb, int offset, packet_info *pinf
        offset += 4;
 
        /* port */
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_ypbind_port, offset);
                
        /* version */
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, 
+       offset = dissect_rpc_uint32(tvb, tree, 
                        hf_ypbind_setdom_version, offset);
                
        return offset;
index b7a20b2b94b86f2880153ea7a4e42774629b4ad1..d3826953e1181edb2c9be97f9b80cd042e74fe33 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-yppasswd.c
  * Routines for yppasswd dissection
  *
- * $Id: packet-yppasswd.c,v 1.5 2002/01/24 09:20:54 guy Exp $
+ * $Id: packet-yppasswd.c,v 1.6 2002/04/03 13:24:13 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -51,12 +51,12 @@ static gint ett_yppasswd = -1;
 static gint ett_yppasswd_newpw = -1;
 
 static int
-dissect_yppasswd_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_yppasswd_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item *lock_item = NULL;
        proto_tree *lock_tree = NULL;
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_yppasswd_oldpass, 
+       offset = dissect_rpc_string(tvb, tree, hf_yppasswd_oldpass, 
                        offset, NULL);
 
        lock_item = proto_tree_add_item(tree, hf_yppasswd_newpw, tvb,
@@ -64,28 +64,28 @@ dissect_yppasswd_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree
 
        lock_tree = proto_item_add_subtree(lock_item, ett_yppasswd_newpw);
 
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_yppasswd_newpw_name, offset, NULL);
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_yppasswd_newpw_passwd, offset, NULL);
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_yppasswd_newpw_uid, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_uint32(tvb, lock_tree, 
                        hf_yppasswd_newpw_gid, offset);
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_yppasswd_newpw_gecos, offset, NULL);
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_yppasswd_newpw_dir, offset, NULL);
-       offset = dissect_rpc_string(tvb, pinfo, lock_tree, 
+       offset = dissect_rpc_string(tvb, lock_tree, 
                        hf_yppasswd_newpw_shell, offset, NULL);
 
        return offset;
 }
 
 static int
-dissect_yppasswd_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_yppasswd_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_yppasswd_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_yppasswd_status, offset);
 
        return offset;
 }
index 76ebe0642c429c6293a7261f4a00c7407cee2194..34b6cd52bda82160f5104e0986bc6509c799fd60 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-ypserv.c
  * Routines for ypserv dissection
  *
- * $Id: packet-ypserv.c,v 1.21 2002/04/02 01:32:46 guy Exp $
+ * $Id: packet-ypserv.c,v 1.22 2002/04/03 13:24:13 girlich Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -97,18 +97,18 @@ static const value_string xfrstat[] =
 };
 
 static int
-dissect_domain_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_domain_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb,pinfo,tree,hf_ypserv_domain,offset,NULL);
+               offset = dissect_rpc_string(tvb,tree,hf_ypserv_domain,offset,NULL);
        }
        
        return offset;
 }
 
 static int
-dissect_domain_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_domain_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
@@ -121,26 +121,26 @@ dissect_domain_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *
 }
 
 static int
-dissect_match_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_match_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_domain, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_map, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_key, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_domain, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_map, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_key, offset, NULL);
        }
        
        return offset;
 }
 
 static int
-dissect_match_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_match_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_status, offset);
+               offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_status, offset);
 
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_value,offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_value,offset, NULL);
        }
        
        return offset;
@@ -148,7 +148,7 @@ dissect_match_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
 
 
 static int
-dissect_first_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_first_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        /*
         * XXX - does Sun's "yp.x" lie, and claim that the argument to a
@@ -170,8 +170,8 @@ dissect_first_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
        
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_domain, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_map, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_domain, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_map, offset, NULL);
        }
        
        return offset;
@@ -179,14 +179,14 @@ dissect_first_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
 
 
 static int
-dissect_firstnext_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_firstnext_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_status, offset);
+               offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_status, offset);
 
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_value, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_key, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_value, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_key, offset, NULL);
        }
        
        return offset;
@@ -194,20 +194,20 @@ dissect_firstnext_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tre
 
 
 static int
-dissect_next_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_next_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        if ( tree )
        {
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_domain, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_map, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_key, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_domain, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_map, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_key, offset, NULL);
        }
        
        return offset;
 }
 
 static int
-dissect_xfr_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_xfr_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_item *sub_item=NULL;
        proto_tree *sub_tree=NULL;
@@ -220,19 +220,19 @@ dissect_xfr_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
                        sub_tree = proto_item_add_subtree(sub_item, ett_ypserv_map_parms);
        }
 
-       offset = dissect_rpc_string(tvb, pinfo, sub_tree, hf_ypserv_domain, offset, NULL);
+       offset = dissect_rpc_string(tvb, sub_tree, hf_ypserv_domain, offset, NULL);
        
-       offset = dissect_rpc_string(tvb, pinfo, sub_tree, hf_ypserv_map, offset, NULL);
+       offset = dissect_rpc_string(tvb, sub_tree, hf_ypserv_map, offset, NULL);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, sub_tree, hf_ypserv_ordernum, offset);
+       offset = dissect_rpc_uint32(tvb, sub_tree, hf_ypserv_ordernum, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, sub_tree, hf_ypserv_peer, offset, NULL);
+       offset = dissect_rpc_string(tvb, sub_tree, hf_ypserv_peer, offset, NULL);
 
        proto_tree_add_item(tree, hf_ypserv_transid, tvb, offset, 4, FALSE);
        offset += 4;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_prog, offset);
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_port, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_prog, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_port, offset);
 
        if(sub_item)
                proto_item_set_len(sub_item, offset - start_offset);
@@ -241,80 +241,80 @@ dissect_xfr_call(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree
 }
 
 static int
-dissect_xfr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_xfr_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        proto_tree_add_item(tree, hf_ypserv_transid, tvb, offset, 4, FALSE);
        offset += 4;
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_xfrstat, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_xfrstat, offset);
 
        return offset;
 }
 
 static int
-dissect_ypreq_nokey(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypreq_nokey(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_domain, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_ypserv_domain, offset, NULL);
        
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_map, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_ypserv_map, offset, NULL);
 
        return offset;
 }
 
 static int
-dissect_ypresp_all(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypresp_all(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
        guint32 more;
 
        for (;;) {
                more = tvb_get_ntohl(tvb, offset);
 
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_more, offset);
+               offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_more, offset);
                if (!more)
                        break;
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_status, offset);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_value, offset, NULL);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_key, offset, NULL);
+               offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_status, offset);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_value, offset, NULL);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_key, offset, NULL);
        }
 
        return offset;
 }
 
 static int
-dissect_ypresp_master(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypresp_master(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_status, offset);
 
-       offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_peer, offset, NULL);
+       offset = dissect_rpc_string(tvb, tree, hf_ypserv_peer, offset, NULL);
 
        return offset;
 }
 
 
 static int
-dissect_ypresp_order(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypresp_order(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_status, offset);
 
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_ordernum, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_ordernum, offset);
 
        return offset;
 }
 
 
 static int
-dissect_ypresp_maplist(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
+dissect_ypresp_maplist(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree)
 {
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_status, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_status, offset);
        while(tvb_get_ntohl(tvb,offset)){
-               offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_more, offset);
-               offset = dissect_rpc_string(tvb, pinfo, tree, hf_ypserv_map, offset, NULL);
+               offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_more, offset);
+               offset = dissect_rpc_string(tvb, tree, hf_ypserv_map, offset, NULL);
 
        }
-       offset = dissect_rpc_uint32(tvb, pinfo, tree, hf_ypserv_more, offset);
+       offset = dissect_rpc_uint32(tvb, tree, hf_ypserv_more, offset);
        return offset;
 }