aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-03 17:21:02 +0200
committerAnders Broman <a.broman58@gmail.com>2017-05-08 17:43:19 +0000
commitc88e60f9fb2269d8204e4a8e79d8723561fb38ca (patch)
tree5442f0df39b77e65fe44a6f85f2124482fb92091
parent07fc801684ebff7aff02505cdb2c120caea846e0 (diff)
ceph: fix conflicting entry in its value_string
Field 'Type' (ceph.type) has a conflicting entry in its value_string: 64 is at indices 39 (C_CEPH_MSG_PRIO_LOW) and 40 (C_MSG_MON_SCRUB)) Change-Id: I69e6bd56d928c20b6262999e057c92f0d325e96d Reviewed-on: https://code.wireshark.org/review/21509 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: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-ceph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ceph.c b/epan/dissectors/packet-ceph.c
index 044b6fb533..f7cf0572f1 100644
--- a/epan/dissectors/packet-ceph.c
+++ b/epan/dissectors/packet-ceph.c
@@ -1013,7 +1013,7 @@ static value_string_ext c_tag_strings_ext = VALUE_STRING_EXT_INIT(c_tag_strings)
V(C_MSG_GETPOOLSTATS, 0x003A, "C_MSG_GETPOOLSTATS") \
V(C_MSG_GETPOOLSTATSREPLY, 0x003B, "C_MSG_GETPOOLSTATSREPLY") \
V(C_MSG_MON_GLOBAL_ID, 0x003C, "C_MSG_MON_GLOBAL_ID") \
- V(C_CEPH_MSG_PRIO_LOW, 0x0040, "C_CEPH_MSG_PRIO_LOW") \
+/* V(C_CEPH_MSG_PRIO_LOW, 0x0040, "C_CEPH_MSG_PRIO_LOW") */ \
V(C_MSG_MON_SCRUB, 0x0040, "C_MSG_MON_SCRUB") \
V(C_MSG_MON_ELECTION, 0x0041, "C_MSG_MON_ELECTION") \
V(C_MSG_MON_PAXOS, 0x0042, "C_MSG_MON_PAXOS") \