[Asterisk-cvs] asterisk/apps app_dumpchan.c,1.3,1.4
markster at lists.digium.com
markster at lists.digium.com
Tue Dec 7 15:40:59 CST 2004
- Previous message: [Asterisk-cvs] asterisk ast_expr.y,1.8,1.9
- Next message: [Asterisk-cvs] asterisk app.c, 1.34, 1.35 autoservice.c, 1.7,
1.8 channel.c, 1.148, 1.149 cli.c, 1.64, 1.65 indications.c,
1.19, 1.20 pbx.c, 1.180, 1.181
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv29951/apps
Modified Files:
app_dumpchan.c
Log Message:
Big diet for struct ast_channel
Index: app_dumpchan.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dumpchan.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- app_dumpchan.c 25 Nov 2004 13:45:29 -0000 1.3
+++ app_dumpchan.c 7 Dec 2004 20:38:43 -0000 1.4
@@ -78,7 +78,6 @@
"PickupGroup=%d\n"
"Application=%s\n"
"Data=%s\n"
- "Stack=%d\n"
"Blocking_in=%s\n",
c->name,
c->type,
@@ -104,8 +103,7 @@
c->pickupgroup,
( c->appl ? c->appl : "(N/A)" ),
( c-> data ? (!ast_strlen_zero(c->data) ? c->data : "(Empty)") : "(None)"),
- c->stack,
- (c->blocking ? c->blockproc : "(Not Blocking)"));
+ (ast_test_flag(c, AST_FLAG_BLOCKING) ? c->blockproc : "(Not Blocking)"));
return 0;
}
- Previous message: [Asterisk-cvs] asterisk ast_expr.y,1.8,1.9
- Next message: [Asterisk-cvs] asterisk app.c, 1.34, 1.35 autoservice.c, 1.7,
1.8 channel.c, 1.148, 1.149 cli.c, 1.64, 1.65 indications.c,
1.19, 1.20 pbx.c, 1.180, 1.181
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list