summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-07-24 18:42:32 +0000
committerRussell Bryant <russell@russellbryant.com>2009-07-24 18:42:32 +0000
commit0b2b01a1fac4540d45f989171204ae2e4a92c453 (patch)
tree4308997953344410e82d2ca5a8c9022d685f9e76 /apps
parent554c5e62d0e31e00279844aee99750baf825a53f (diff)
Merged revisions 208592 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r208592 | russell | 2009-07-24 13:38:24 -0500 (Fri, 24 Jul 2009) | 7 lines Do not log an ERROR if autoservice_stop() returns -1. This does not indicate an error. A return of -1 just means that the channel has been hung up. (reported in #asterisk-dev) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@208593 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_dial.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 6e2088cd3..89151d2be 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -2158,7 +2158,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");
res = -1;
}