From 49ad55b85a44ef01bb8d1f886dc2f1345757f5de Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Mon, 28 Mar 2005 07:08:39 +0000 Subject: [PATCH] Continue with GET_DATA if no file is there (bug #3878) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5290 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_agi.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/res/res_agi.c b/res/res_agi.c index a5537d4c78..f6daabf389 100755 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -674,10 +674,7 @@ static int handle_getdata(struct ast_channel *chan, AGI *agi, int argc, char *ar fdprintf(agi->fd, "200 result=-1\n"); else fdprintf(agi->fd, "200 result=%s\n", data); - if (res >= 0) - return RESULT_SUCCESS; - else - return RESULT_FAILURE; + return RESULT_SUCCESS; } static int handle_setcontext(struct ast_channel *chan, AGI *agi, int argc, char *argv[])