[svn-commits] jpeeler: branch 1.6.1 r232578 - in /branches/1.6.1: ./ main/manager.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Dec 2 15:35:52 CST 2009


Author: jpeeler
Date: Wed Dec  2 15:35:48 2009
New Revision: 232578

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=232578
Log:
Merged revisions 232576 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r232576 | jpeeler | 2009-12-02 15:32:50 -0600 (Wed, 02 Dec 2009) | 8 lines
  
  Make manager response to "Action: events" finish with empty line
  
  (closes issue #16275)
  Reported by: vnovy
  Patches: 
        manager.c.diff uploaded by vnovy (license 922)
........

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://svnview.digium.com/svn/asterisk/branches/1.6.1/main/manager.c?view=diff&rev=232578&r1=232577&r2=232578
==============================================================================
--- branches/1.6.1/main/manager.c (original)
+++ branches/1.6.1/main/manager.c Wed Dec  2 15:35:48 2009
@@ -1702,10 +1702,10 @@
 	res = set_eventmask(s, mask);
 	if (res > 0)
 		astman_append(s, "Response: Success\r\n"
-				 "Events: On\r\n");
+				 "Events: On\r\n\r\n");
 	else if (res == 0)
 		astman_append(s, "Response: Success\r\n"
-				 "Events: Off\r\n");
+				 "Events: Off\r\n\r\n");
 	return 0;
 }
 




More information about the svn-commits mailing list