[asterisk-commits] jpeeler: trunk r232576 - /trunk/main/manager.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Dec 2 15:32:55 CST 2009
Author: jpeeler
Date: Wed Dec 2 15:32:50 2009
New Revision: 232576
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=232576
Log:
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:
trunk/main/manager.c
Modified: trunk/main/manager.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/manager.c?view=diff&rev=232576&r1=232575&r2=232576
==============================================================================
--- trunk/main/manager.c (original)
+++ trunk/main/manager.c Wed Dec 2 15:32:50 2009
@@ -2689,10 +2689,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