summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-11-14 17:02:00 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-11-14 17:02:00 +0000
commit777d5ee47033a2d4746a675ce07c808ff03ec89d (patch)
tree7cd832c8fa8192307e5df7bdd9f15099fb240f5a
parentcf6c66de65b344aab18f032feb4aa851fde3f3ad (diff)
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/trunk@156911 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/manager.c b/main/manager.c
index af80cbd0b..c97e613d9 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -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;
}