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: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@156913 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Tilghman Lesher
2008-11-14 17:04:13 +00:00
parent 2831947109
commit 1747fd1d2f

View File

@@ -1107,7 +1107,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;
}