[asterisk-commits] tilghman: branch 1.6.0 r156912 - in /branches/1.6.0: ./ main/manager.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Nov 14 11:03:27 CST 2008


Author: tilghman
Date: Fri Nov 14 11:03:26 2008
New Revision: 156912

URL: http://svn.digium.com/view/asterisk?view=rev&rev=156912
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.0/   (props changed)
    branches/1.6.0/main/manager.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/main/manager.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/main/manager.c?view=diff&rev=156912&r1=156911&r2=156912
==============================================================================
--- branches/1.6.0/main/manager.c (original)
+++ branches/1.6.0/main/manager.c Fri Nov 14 11:03:26 2008
@@ -1068,7 +1068,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