]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
messages: fix strings for MMonGetVersionReply
authorJohn Spray <john.spray@redhat.com>
Wed, 17 Feb 2016 14:30:15 +0000 (14:30 +0000)
committerJohn Spray <john.spray@redhat.com>
Thu, 10 Mar 2016 11:18:28 +0000 (11:18 +0000)
It previously described itself as "mon_check_map_ack"

Signed-off-by: John Spray <john.spray@redhat.com>
src/messages/MMonGetVersionReply.h

index b13b2f0098ae9ec29a0a47e71b177307109d632e..5b052764793862ade35a01d4639522d4a5e8bb9d 100644 (file)
@@ -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) {