From 9b2b681d20b8aee1a5feef7e794b9711c34b7423 Mon Sep 17 00:00:00 2001 From: tilghman Date: Fri, 14 Nov 2008 17:03:26 +0000 Subject: Merged revisions 156911 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r156911 | tilghman | 2008-11-14 11:02:00 -0600 (Fri, 14 Nov 2008) | 4 lines Ping is missing the standard double-newline after the event. (closes issue #13903) Reported by: kebl0155 ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@156912 f38db490-d61c-443f-a65b-d21fe96a405b --- main/manager.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main/manager.c') diff --git a/main/manager.c b/main/manager.c index 6b4c7e2f0..21ac252d5 100644 --- a/main/manager.c +++ b/main/manager.c @@ -1068,7 +1068,8 @@ static char mandescr_ping[] = static int action_ping(struct mansession *s, const struct message *m) { astman_append(s, "Response: Success\r\n" - "Ping: Pong\r\n"); + "Ping: Pong\r\n" + "\r\n"); return 0; } -- cgit v1.2.3