From 3890d4e813ead8ead08764aecad8d2484aa9bcf4 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Tue, 9 May 2006 06:00:11 +0000 Subject: [PATCH] Bug 7114 - Originate success/failure indicator was reversed git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25831 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"