summaryrefslogtreecommitdiff
path: root/manager.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-05-09 06:00:11 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-05-09 06:00:11 +0000
commit3890d4e813ead8ead08764aecad8d2484aa9bcf4 (patch)
treea6c49a49ebf47feb06029cc3c12caedf62547ff4 /manager.c
parent308618585e08709e729293632431f190065491df (diff)
Bug 7114 - Originate success/failure indicator was reversed
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@25831 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'manager.c')
-rw-r--r--manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/manager.c b/manager.c
index bf7016672..db61e28e5 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"