From ab87db441962fd7e1513845e9b1a37e61e4beb9a Mon Sep 17 00:00:00 2001 From: Kinsey Moore Date: Fri, 6 Apr 2012 13:30:40 +0000 Subject: [PATCH] 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) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@361329 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_dial.c | 1 - 1 file changed, 1 deletion(-) 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; }