[svn-commits] trunk r25831 - /trunk/manager.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Mon May 8 23:00:12 MST 2006


Author: tilghman
Date: Tue May  9 01:00:11 2006
New Revision: 25831

URL: http://svn.digium.com/view/asterisk?rev=25831&view=rev
Log:
Bug 7114 - Originate success/failure indicator was reversed

Modified:
    trunk/manager.c

Modified: trunk/manager.c
URL: http://svn.digium.com/view/asterisk/trunk/manager.c?rev=25831&r1=25830&r2=25831&view=diff
==============================================================================
--- trunk/manager.c (original)
+++ trunk/manager.c Tue May  9 01:00:11 2006
@@ -1312,7 +1312,7 @@
 	
 	/* Tell the manager what happened with the channel */
 	manager_event(EVENT_FLAG_CALL,
-		res ? "OriginateSuccess" : "OriginateFailure",
+		res ? "OriginateFailure" : "OriginateSuccess",
 		"%s"
 		"Channel: %s/%s\r\n"
 		"Context: %s\r\n"



More information about the svn-commits mailing list