[asterisk-commits] jpeeler: branch 1.6.0 r232577 - in /branches/1.6.0: ./ main/manager.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Dec 2 15:34:02 CST 2009
Author: jpeeler
Date: Wed Dec 2 15:33:58 2009
New Revision: 232577
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=232577
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.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://svnview.digium.com/svn/asterisk/branches/1.6.0/main/manager.c?view=diff&rev=232577&r1=232576&r2=232577
==============================================================================
--- branches/1.6.0/main/manager.c (original)
+++ branches/1.6.0/main/manager.c Wed Dec 2 15:33:58 2009
@@ -1612,10 +1612,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