From: Tilghman Lesher Date: Tue, 9 May 2006 06:00:11 +0000 (+0000) Subject: Bug 7114 - Originate success/failure indicator was reversed X-Git-Tag: 1.4.0-beta1~1487 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3890d4e813ead8ead08764aecad8d2484aa9bcf4;p=thirdparty%2Fasterisk.git Bug 7114 - Originate success/failure indicator was reversed git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25831 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/manager.c b/manager.c index bf70166726..db61e28e53 100644 --- a/manager.c +++ b/manager.c @@ -1312,7 +1312,7 @@ static void *fast_originate(void *data) /* 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"