[asterisk-commits] jpeeler: branch 1.6.2 r232579 - in /branches/1.6.2: ./ main/manager.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Dec 2 15:36:10 CST 2009
Author: jpeeler
Date: Wed Dec 2 15:36:06 2009
New Revision: 232579
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=232579
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.2/ (props changed)
branches/1.6.2/main/manager.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/main/manager.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/main/manager.c?view=diff&rev=232579&r1=232578&r2=232579
==============================================================================
--- branches/1.6.2/main/manager.c (original)
+++ branches/1.6.2/main/manager.c Wed Dec 2 15:36:06 2009
@@ -1720,10 +1720,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 asterisk-commits
mailing list