From: Kinsey Moore Date: Fri, 6 Apr 2012 13:31:51 +0000 (+0000) Subject: Remove unnecessary error message in app_dial.c X-Git-Tag: 10.5.0-rc1~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79e7cba45d65be019f646a1f119f1a7b76f51f7f;p=thirdparty%2Fasterisk.git Remove unnecessary error message in app_dial.c The error message for failure to stop autoservice after a gosub or macro call during a dial was removed for macro while Asterisk 1.4 was still being actively developed. The corresponding gosub error message was never removed. (closes issue ASTERISK-19551) ........ Merged revisions 361329 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@361330 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dial.c b/apps/app_dial.c index b5d06870fd..352f243e3a 100644 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -2767,7 +2767,6 @@ static int dial_exec_full(struct ast_channel *chan, const char *data, struct ast } if (ast_autoservice_stop(chan) < 0) { - ast_log(LOG_ERROR, "Could not stop autoservice on calling channel\n"); res9 = -1; }