From: Sean Bright Date: Wed, 9 Sep 2009 12:11:12 +0000 (+0000) Subject: Properly terminate the response to the manager Ping action. X-Git-Tag: 11.0.0-beta1~4202 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ee2947a55d82df8090268fb0abea36cca1dca67;p=thirdparty%2Fasterisk.git Properly terminate the response to the manager Ping action. In passing, correct the formatting of the Timestamp attribute so that there is a space after the colon and before the value. (closes issue #15861) Reported by: Ivan git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@217408 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/manager.c b/main/manager.c index a293d3aaaa..1e205742bb 100644 --- a/main/manager.c +++ b/main/manager.c @@ -2063,7 +2063,12 @@ static int action_ping(struct mansession *s, const struct message *m) if (!ast_strlen_zero(actionid)){ astman_append(s, "ActionID: %s\r\n", actionid); } - astman_append(s, "Ping: Pong\r\nTimestamp:%ld.%06lu\r\n", now.tv_sec, (unsigned long) now.tv_usec); + astman_append( + s, + "Ping: Pong\r\n" + "Timestamp: %ld.%06lu\r\n" + "\r\n", + now.tv_sec, (unsigned long) now.tv_usec); return 0; }