]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/ping.cpp
Lower the acceptable drift for clocks on link.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / ping.cpp
index 844feb35b45e6b024f5b5772faf0ceae69d08e1b..51e87874d202d952138da7ab438df1656291163e 100644 (file)
@@ -30,10 +30,10 @@ CmdResult CommandPing::Handle(User* user, Params& params)
        {
                // PING for us, reply with a PONG
                CmdBuilder reply("PONG");
-               reply.push_back(user->uuid);
+               reply.push(user->uuid);
                if (params.size() >= 2)
                        // If there is a second parameter, append it
-                       reply.push_back(params[1]);
+                       reply.push(params[1]);
 
                reply.Unicast(user);
        }