From: Russell Bryant Date: Tue, 26 Oct 2004 14:42:01 +0000 (+0000) Subject: fix LOG_NOTICE message to exten@context from context@exten (bug #2725) X-Git-Tag: 1.0.11.1~411 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67478da442906f0a22f2a187c4ecfd6ace3b632d;p=thirdparty%2Fasterisk.git fix LOG_NOTICE message to exten@context from context@exten (bug #2725) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4103 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_local.c b/channels/chan_local.c index fc8fd8820a..1a81db14a0 100755 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -371,7 +371,7 @@ static struct local_pvt *local_alloc(char *data, int format) strncpy(tmp->context, "default", sizeof(tmp->context) - 1); tmp->reqformat = format; if (!ast_exists_extension(NULL, tmp->context, tmp->exten, 1, NULL)) { - ast_log(LOG_NOTICE, "No such extension/context %s@%s creating local channel\n", tmp->context, tmp->exten); + ast_log(LOG_NOTICE, "No such extension/context %s@%s creating local channel\n", tmp->exten, tmp->context); ast_mutex_destroy(&tmp->lock); free(tmp); tmp = NULL;