aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorWeston Andros Adamson <dros@primarydata.com>2015-02-10 16:02:55 -0500
committerAnders Broman <a.broman58@gmail.com>2015-06-16 06:11:55 +0000
commit112f8e69350df29ec98689a4aa86a66b02b24aee (patch)
treee7dd1e4d1294a909a4bf3b59f56ca2ba68bbce60 /epan/dissectors
parent5f03f02341a5ed9a56c4185e660e6d843b0d72d3 (diff)
packet-nfs: flexfiles now uses string uid/gid
And no longer uses opaque_auth Change-Id: I272e1c5c1391dac977ad850b899505a28c42b6fd Reviewed-on: https://code.wireshark.org/review/8939 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-nfs.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/epan/dissectors/packet-nfs.c b/epan/dissectors/packet-nfs.c
index 87324fd591..c9754f3da8 100644
--- a/epan/dissectors/packet-nfs.c
+++ b/epan/dissectors/packet-nfs.c
@@ -8429,8 +8429,12 @@ dissect_nfs4_layout(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *t
offset = dissect_nfs4_fh(tvb, offset,
pinfo, ds_tree, "fh", NULL, civ);
- offset = dissect_rpc_opaque_auth(tvb, ds_tree,
- offset, pinfo);
+ offset = dissect_nfs_utf8string(tvb, offset,
+ ds_tree, hf_nfs4_fattr_owner,
+ NULL);
+ offset = dissect_nfs_utf8string(tvb, offset,
+ ds_tree, hf_nfs4_fattr_owner_group,
+ NULL);
}
}
} else {