aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfsacl.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-02 21:04:11 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-04-02 21:04:11 +0000
commitd9227587f0235da559a16793519b28c40606e2d7 (patch)
treea5bcfd8c5ce16f57b576232c089717411bf99974 /epan/dissectors/packet-nfsacl.c
parent30ade25ed3b728012a8af02817b6138faaa12423 (diff)
prettify dissection of nfsv3 fattr3 structure
put useful info like type,mode,uid,gid on the expansion lines so we dont have to open the expansion to see these values. allow it to push this info multiple expansion lines upward and optionally (such as for GETATTR replies) put this info in the info column as well svn path=/trunk/; revision=17783
Diffstat (limited to 'epan/dissectors/packet-nfsacl.c')
-rw-r--r--epan/dissectors/packet-nfsacl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-nfsacl.c b/epan/dissectors/packet-nfsacl.c
index 54e410002b..8b6ba955ca 100644
--- a/epan/dissectors/packet-nfsacl.c
+++ b/epan/dissectors/packet-nfsacl.c
@@ -447,7 +447,7 @@ dissect_nfsacl3_getacl_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
}
if (entry_tree)
- offset = dissect_nfs_post_op_attr(tvb, offset, entry_tree, "attr");
+ offset = dissect_nfs_post_op_attr(tvb, offset, pinfo, entry_tree, "attr");
if (status != ACL3_OK)
return offset;
@@ -495,7 +495,7 @@ dissect_nfsacl3_setacl_reply(tvbuff_t *tvb, int offset, packet_info *pinfo _U_,
offset += 4;
- offset = dissect_nfs_post_op_attr(tvb, offset, tree, "attr");
+ offset = dissect_nfs_post_op_attr(tvb, offset, pinfo, tree, "attr");
return offset;
}
@@ -528,7 +528,7 @@ dissect_nfsacl3_getxattrdir_reply(tvbuff_t *tvb, int offset,
if (status == ACL3_OK)
{
offset = dissect_nfs_fh3(tvb, offset, pinfo, tree, "fhandle", NULL);
- offset = dissect_nfs_post_op_attr(tvb, offset, tree, "attr");
+ offset = dissect_nfs_post_op_attr(tvb, offset, pinfo, tree, "attr");
}
return offset;