2005-11-07 Kevin P. Fleming <kpfleming@digium.com>
+ * apps/app_dial.c (HANDLE_CAUSE): set CDR disposition to match cause code (issue #5602)
+
* asterisk.c: support 'runuser' and 'rungroup' options in asterisk.conf (issue #5621)
* res/Makefile, apps/Makefile, channels/Makefile, Makefile: support WITHOUT_ZAPTEL define to forcibly avoid building Zaptel support (issue #5634)
break; \
case AST_CAUSE_CONGESTION: \
if (chan->cdr) \
- ast_cdr_busy(chan->cdr); \
+ ast_cdr_failed(chan->cdr); \
numcongestion++; \
break; \
case AST_CAUSE_UNREGISTERED: \
if (chan->cdr) \
- ast_cdr_busy(chan->cdr); \
+ ast_cdr_failed(chan->cdr); \
numnochan++; \
break; \
default: \