Don't run hangup extension when KEEPALIVE is returned (bug #120)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1415 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2003-08-24 20:08:55 +00:00
parent 730d7655c7
commit 384072d44c

2
pbx.c
View File

@@ -1802,7 +1802,7 @@ int ast_pbx_run(struct ast_channel *c)
if (firstpass)
ast_log(LOG_WARNING, "Don't know what to do with '%s'\n", c->name);
out:
if (ast_exists_extension(c, c->context, "h", 1, c->callerid)) {
if ((res != AST_PBX_KEEPALIVE) && ast_exists_extension(c, c->context, "h", 1, c->callerid)) {
strcpy(c->exten, "h");
c->priority = 1;
while(ast_exists_extension(c, c->context, c->exten, c->priority, c->callerid)) {