summaryrefslogtreecommitdiff
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-03-28 07:08:39 +0000
committerMark Spencer <markster@digium.com>2005-03-28 07:08:39 +0000
commit49ad55b85a44ef01bb8d1f886dc2f1345757f5de (patch)
treedb929055006405e567cdd1c69bda05b10ae370e8 /res/res_agi.c
parent74075be1c460520d430ff9158634069682db9613 (diff)
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
Diffstat (limited to 'res/res_agi.c')
-rwxr-xr-xres/res_agi.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index a5537d4c7..f6daabf38 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[])