[asterisk-commits] tilghman: branch 1.6.1 r156913 - in /branches/1.6.1: ./ main/manager.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Nov 14 11:04:14 CST 2008
Author: tilghman
Date: Fri Nov 14 11:04:13 2008
New Revision: 156913
URL: http://svn.digium.com/view/asterisk?view=rev&rev=156913
Log:
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
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/main/manager.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/main/manager.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/main/manager.c?view=diff&rev=156913&r1=156912&r2=156913
==============================================================================
--- branches/1.6.1/main/manager.c (original)
+++ branches/1.6.1/main/manager.c Fri Nov 14 11:04:13 2008
@@ -1107,7 +1107,8 @@
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;
}
More information about the asterisk-commits
mailing list