From: John Spray Date: Wed, 17 Feb 2016 14:30:15 +0000 (+0000) Subject: messages: fix strings for MMonGetVersionReply X-Git-Tag: v10.1.0~144^2~12 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1cd71d35de253044d7bbbb569b211224dab32284;p=ceph.git messages: fix strings for MMonGetVersionReply It previously described itself as "mon_check_map_ack" Signed-off-by: John Spray --- 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) {