From 1cd71d35de253044d7bbbb569b211224dab32284 Mon Sep 17 00:00:00 2001 From: John Spray Date: Wed, 17 Feb 2016 14:30:15 +0000 Subject: [PATCH] messages: fix strings for MMonGetVersionReply It previously described itself as "mon_check_map_ack" Signed-off-by: John Spray --- src/messages/MMonGetVersionReply.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/messages/MMonGetVersionReply.h b/src/messages/MMonGetVersionReply.h index b13b2f0098ae9..5b05276479386 100644 --- a/src/messages/MMonGetVersionReply.h +++ b/src/messages/MMonGetVersionReply.h @@ -32,11 +32,11 @@ public: MMonGetVersionReply() : Message(CEPH_MSG_MON_GET_VERSION_REPLY, HEAD_VERSION) { } const char *get_type_name() const { - return "mon_check_map_ack"; + return "mon_get_version_reply"; } void print(ostream& o) const { - o << "mon_check_map_ack(handle=" << handle << " version=" << version << ")"; + o << "mon_get_version_reply(handle=" << handle << " version=" << version << ")"; } void encode_payload(uint64_t features) { -- 2.39.5