aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nfsacl.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-17 21:34:22 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-08-17 21:34:22 +0000
commit505df05a23f569f436a4c9c27f0ea36b74c278e5 (patch)
tree57ca70f9625181b1c189a68c53fd53faf654e5c9 /packet-nfsacl.c
parent64d4e5a47fd5db0ca41b1ef22af7a4721633de9b (diff)
Prettifying the RPC and NFS (v3) layer.
Add more text to the COL_INFO line as well as the protocol trees for NFS and RPC git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8179 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-nfsacl.c')
-rw-r--r--packet-nfsacl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-nfsacl.c b/packet-nfsacl.c
index be9f98dd86..9963ccf219 100644
--- a/packet-nfsacl.c
+++ b/packet-nfsacl.c
@@ -4,7 +4,7 @@
*
* Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-nfsacl.c,v 1.8 2003/06/10 17:14:28 guy Exp $
+ * $Id: packet-nfsacl.c,v 1.9 2003/08/17 21:34:22 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -416,7 +416,7 @@ static int
dissect_nfsacl3_getacl_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_tree *tree)
{
- offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle");
+ offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle", NULL);
offset = dissect_nfsacl_mask(tvb, offset, tree, "mask");
return offset;
@@ -466,7 +466,7 @@ dissect_nfsacl3_setacl_call(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
proto_item *acl_item = NULL;
proto_tree *acl_tree = NULL;
- offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle");
+ offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle", NULL);
if (tree)
{
@@ -505,7 +505,7 @@ dissect_nfsacl3_getxattrdir_call(tvbuff_t *tvb, int offset,
packet_info *pinfo _U_, proto_tree *tree)
{
- offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle");
+ offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle", NULL);
offset = dissect_rpc_bool(tvb, tree, hf_nfsacl_create, offset);
return offset;
@@ -527,7 +527,7 @@ dissect_nfsacl3_getxattrdir_reply(tvbuff_t *tvb, int offset,
if (status == ACL3_OK)
{
- offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle");
+ offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle", NULL);
offset = dissect_nfs_post_op_attr(tvb, offset, tree, "attr");
}