From 4d714a548871e5858faa4d7b9bdb0ffebccde161 Mon Sep 17 00:00:00 2001 From: markster Date: Tue, 7 Dec 2004 20:38:43 +0000 Subject: Big diet for struct ast_channel git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4399 f38db490-d61c-443f-a65b-d21fe96a405b --- cli.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cli.c') diff --git a/cli.c b/cli.c index 51e71b48c..28d40cad0 100755 --- a/cli.c +++ b/cli.c @@ -668,7 +668,6 @@ static int handle_showchan(int fd, int argc, char *argv[]) " Pickup Group: %d\n" " Application: %s\n" " Data: %s\n" - " Stack: %d\n" " Blocking in: %s\n", c->name, c->type, c->uniqueid, (c->cid.cid_num ? c->cid.cid_num : "(N/A)"), @@ -679,7 +678,7 @@ static int handle_showchan(int fd, int argc, char *argv[]) hour, min, sec, c->context, c->exten, c->priority, c->callgroup, 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)")); if(pbx_builtin_serialize_variables(c,buf,sizeof(buf))) ast_cli(fd,"Variables:\n%s\n",buf); -- cgit v1.2.3