aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorTigran Mkrtchyan <tigran.mkrtchyan@desy.de>2018-06-26 11:07:00 +0200
committerJaap Keuter <jaap.keuter@xs4all.nl>2018-06-26 13:13:24 +0000
commitd2a016737575927d453081675502346ed5eac8dd (patch)
tree7241ee7f6474be247161e719dce48a6dabe851fd /epan
parent724519d8f987b069867cb9b0cf25a50116402f37 (diff)
nfs: fix displaying of operation CLONE
due to missing mapping from operation number to a string representation wireshark displays '71' instead of 'CLONE' Change-Id: Ic5da0a110d5475b2467d6110ea2896332f93288c Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de> Reviewed-on: https://code.wireshark.org/review/28447 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-nfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-nfs.c b/epan/dissectors/packet-nfs.c
index c0305f578d..7cb345201b 100644
--- a/epan/dissectors/packet-nfs.c
+++ b/epan/dissectors/packet-nfs.c
@@ -7634,6 +7634,7 @@ static const value_string names_nfs4_operation[] = {
{ NFS4_OP_READ_PLUS, "READ_PLUS" },
{ NFS4_OP_SEEK, "SEEK" },
{ NFS4_OP_WRITE_SAME, "WRITE_SAME" },
+ { NFS4_OP_CLONE, "CLONE" },
{ NFS4_OP_GETXATTR, "GETXATTR" },
{ NFS4_OP_SETXATTR, "SETXATTR" },
{ NFS4_OP_LISTXATTRS, "LISTXATTRS" },