don't hangup the channel when a RECEIVE TEXT command times out (bug #4607)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6082 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-07-11 20:40:02 +00:00
parent e67bc60c40
commit 8079f53c01

View File

@@ -413,11 +413,10 @@ static int handle_recvtext(struct ast_channel *chan, AGI *agi, int argc, char *a
if (buf) {
fdprintf(agi->fd, "200 result=1 (%s)\n", buf);
free(buf);
return RESULT_SUCCESS;
} else {
fdprintf(agi->fd, "200 result=-1\n");
return RESULT_FAILURE;
}
return RESULT_SUCCESS;
}
static int handle_tddmode(struct ast_channel *chan, AGI *agi, int argc, char *argv[])