]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Make Busy() application set the CDR disposition to BUSY.
authorMatthew Nicholson <mnicholson@digium.com>
Fri, 17 Apr 2009 15:43:09 +0000 (15:43 +0000)
committerMatthew Nicholson <mnicholson@digium.com>
Fri, 17 Apr 2009 15:43:09 +0000 (15:43 +0000)
(closes issue #14306)
Reported by: cristiandimache

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

main/pbx.c

index 78b200940a3b59e771ad73fc804bc1470bc46344..0f970b85e17cd9cbee6d9c182e456232b3f5591f 100644 (file)
@@ -5412,8 +5412,10 @@ static int pbx_builtin_busy(struct ast_channel *chan, void *data)
        ast_indicate(chan, AST_CONTROL_BUSY);
        /* Don't change state of an UP channel, just indicate
           busy in audio */
-       if (chan->_state != AST_STATE_UP)
+       if (chan->_state != AST_STATE_UP) {
                ast_setstate(chan, AST_STATE_BUSY);
+               ast_cdr_busy(chan->cdr);
+       }
        wait_for_hangup(chan, data);
        return -1;
 }