aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-24 18:38:24 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-24 18:38:24 +0000
commitecfa3bcf0594ae0abe8e5323271fb6e97838596a (patch)
treeae13004da9a0c60971dae795358a705acc64d573 /apps
parentf7111173898045b29c6a290d724bd9545f91f8ff (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.4@208592 f38db490-d61c-443f-a65b-d21fe96a405b
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 c8cb3a37d..080de00fe 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -1674,7 +1674,6 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
}
if (ast_autoservice_stop(chan) < 0) {
- ast_log(LOG_ERROR, "Could not stop autoservice on calling channel\n");
res = -1;
}