aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-13 08:09:43 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-13 08:09:43 +0000
commit25a590576a24f11314f585f458ac2d6dc2645e39 (patch)
treee155e98ae036413fca85e5d4168967204a44332c /apps/app_queue.c
parent4e2c1d74ecc1852eeb081095bb875fd20ac7b161 (diff)
Fix transfer to parking
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1087 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_queue.c')
-rwxr-xr-xapps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 098cd4e09..ae475530b 100755
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -718,7 +718,7 @@ static int queue_exec(struct ast_channel *chan, void *data)
}
}
/* Don't allow return code > 0 */
- if (res > 0)
+ if (res > 0 && res != AST_PBX_KEEPALIVE)
res = 0;
ast_moh_stop(chan);
leave_queue(&qe);