]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
If the channel is hungup during RECORD FILE send a result code of -1 to be uniform...
authorJoshua Colp <jcolp@digium.com>
Fri, 11 Jan 2008 19:28:30 +0000 (19:28 +0000)
committerJoshua Colp <jcolp@digium.com>
Fri, 11 Jan 2008 19:28:30 +0000 (19:28 +0000)
(closes issue #11743)
Reported by: davevg
Patches:
      res_agi.diff uploaded by davevg (license 209)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@98317 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_agi.c

index 0a56f94e853a6a88c2b38b0e495d1405410e9bff..b0de6db3671c64ff1e8684bb8c0a96cafe58dbe1 100644 (file)
@@ -977,7 +977,7 @@ static int handle_recordfile(struct ast_channel *chan, AGI *agi, int argc, char
                        }
                        f = ast_read(chan);
                        if (!f) {
-                               fdprintf(agi->fd, "200 result=%d (hangup) endpos=%ld\n", 0, sample_offset);
+                               fdprintf(agi->fd, "200 result=%d (hangup) endpos=%ld\n", -1, sample_offset);
                                ast_closestream(fs);
                                if (sildet)
                                        ast_dsp_free(sildet);