From: Mark Spencer Date: Tue, 26 Oct 2004 03:01:52 +0000 (+0000) Subject: Fix chan_local debug message (bug #2725) X-Git-Tag: 1.2.0-beta1~1943 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dcb396b76b39d1186fe929c32991593714bcbab6;p=thirdparty%2Fasterisk.git Fix chan_local debug message (bug #2725) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4101 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_local.c b/channels/chan_local.c index fa879d59d0..8b2c5be54a 100755 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -379,7 +379,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;