aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-11-25 17:02:20 -0500
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2016-11-26 09:31:10 +0000
commitff4b272180b4f52432dadb9c93f43d01a001900f (patch)
tree671b5535637b826329ba5d0978b59ac0f6e373e3
parent9022877411a539d0561c0d71be3ca63095819d13 (diff)
GlusterFS: Insert missing FORGET command.
Apparently, it was forgotten ;) Bug: 12614 Change-Id: Id1a2d98e3ea2b381c5fa60faeb342256d4c7d9f8 Reviewed-on: https://code.wireshark.org/review/18955 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
-rw-r--r--epan/dissectors/packet-gluster.h1
-rw-r--r--epan/dissectors/packet-glusterfs.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/epan/dissectors/packet-gluster.h b/epan/dissectors/packet-gluster.h
index 9809032d05..7931d7aa18 100644
--- a/epan/dissectors/packet-gluster.h
+++ b/epan/dissectors/packet-gluster.h
@@ -361,6 +361,7 @@ enum gf_fop_procnum {
GFS3_OP_SETATTR,
GFS3_OP_FSETATTR,
GFS3_OP_READDIRP,
+ GFS3_OP_FORGET,
GFS3_OP_RELEASE,
GFS3_OP_RELEASEDIR,
GFS3_OP_FREMOVEXATTR,
diff --git a/epan/dissectors/packet-glusterfs.c b/epan/dissectors/packet-glusterfs.c
index f9051c23ec..e752d6e5c4 100644
--- a/epan/dissectors/packet-glusterfs.c
+++ b/epan/dissectors/packet-glusterfs.c
@@ -2245,6 +2245,7 @@ static const value_string glusterfs3_1_fop_proc_vals[] = {
{ GFS3_OP_SETATTR, "SETATTR" },
{ GFS3_OP_FSETATTR, "FSETATTR" },
{ GFS3_OP_READDIRP, "READDIRP" },
+ { GFS3_OP_FORGET, "FORGET" },
{ GFS3_OP_RELEASE, "RELEASE" },
{ GFS3_OP_RELEASEDIR, "RELEASEDIR" },
{ GFS3_OP_FREMOVEXATTR, "FREMOVEXATTR" },