aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfs.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-11-14 20:38:05 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-11-14 20:38:05 +0000
commit91398db56b3244a6eea5993945be6da4ab41844a (patch)
treefd0d8afe4ad6acc0171e1122b1b1280df65a2260 /epan/dissectors/packet-nfs.c
parent47c4f27e0e3645cfab93366a4bd2aba9e5eb4553 (diff)
Append each op name to the operations sub-tree so you don't necessarily have to expand the tree to see which ops are present. I think it makes more sense to append the names here rather than at the top level which was done to resolve bug 6078, but for now, I leave them appended in both places.
svn path=/trunk/; revision=39837
Diffstat (limited to 'epan/dissectors/packet-nfs.c')
-rw-r--r--epan/dissectors/packet-nfs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-nfs.c b/epan/dissectors/packet-nfs.c
index 47289bbbbf..cdfcb69e53 100644
--- a/epan/dissectors/packet-nfs.c
+++ b/epan/dissectors/packet-nfs.c
@@ -9067,6 +9067,8 @@ dissect_nfs_argop4(tvbuff_t *tvb, int offset, packet_info *pinfo,
proto_item_append_text(proto_tree_get_parent(tree),
"%s%s", ops_counter ? ", " : " ", opname);
+ proto_item_append_text(proto_tree_get_parent(ftree),
+ "%s%s", ops_counter ? ", " : ": ", opname);
switch(opcode)
{