[Asterisk-cvs] asterisk/apps app_dial.c,1.152,1.153
kpfleming at lists.digium.com
kpfleming at lists.digium.com
Sun May 15 20:03:46 CDT 2005
- Previous message: [Asterisk-cvs] asterisk/apps app_eval.c,1.4,1.5
- Next message: [Asterisk-cvs] asterisk ast_expr2.fl, NONE, 1.1 ast_expr2.y, NONE,
1.1 vercomp.sh, NONE, 1.1 Makefile, 1.154, 1.155
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv19366/apps
Modified Files:
app_dial.c
Log Message:
return CHANUNAVAIL for unregistered peers, not CONGESTION (bug #4276)
Index: app_dial.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dial.c,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -d -r1.152 -r1.153
--- app_dial.c 29 Apr 2005 17:00:33 -0000 1.152
+++ app_dial.c 16 May 2005 00:09:09 -0000 1.153
@@ -189,11 +189,15 @@
numbusy++; \
break; \
case AST_CAUSE_CONGESTION: \
- case AST_CAUSE_UNREGISTERED: \
if (chan->cdr) \
ast_cdr_busy(chan->cdr); \
numcongestion++; \
break; \
+ case AST_CAUSE_UNREGISTERED: \
+ if (chan->cdr) \
+ ast_cdr_busy(chan->cdr); \
+ numnochan++; \
+ break; \
default: \
numnochan++; \
break; \
- Previous message: [Asterisk-cvs] asterisk/apps app_eval.c,1.4,1.5
- Next message: [Asterisk-cvs] asterisk ast_expr2.fl, NONE, 1.1 ast_expr2.y, NONE,
1.1 vercomp.sh, NONE, 1.1 Makefile, 1.154, 1.155
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list