[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


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;
 }




More information about the svn-commits mailing list