From 5186035990da85fdde638034d4732806896f9087 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Fri, 11 Jan 2008 19:30:34 +0000 Subject: [PATCH] Merged revisions 98317 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r98317 | file | 2008-01-11 15:28:30 -0400 (Fri, 11 Jan 2008) | 6 lines If the channel is hungup during RECORD FILE send a result code of -1 to be uniform with everything else. (closes issue #11743) Reported by: davevg Patches: res_agi.diff uploaded by davevg (license 209) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@98318 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_agi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_agi.c b/res/res_agi.c index 0c352c8430..75692089b0 100644 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -1342,7 +1342,7 @@ static int handle_recordfile(struct ast_channel *chan, AGI *agi, int argc, char } f = ast_read(chan); if (!f) { - ast_agi_fdprintf(chan, agi->fd, "200 result=%d (hangup) endpos=%ld\n", 0, sample_offset); + ast_agi_fdprintf(chan, agi->fd, "200 result=%d (hangup) endpos=%ld\n", -1, sample_offset); ast_closestream(fs); if (sildet) ast_dsp_free(sildet);