[Asterisk-cvs] asterisk/apps app_meetme.c,1.123,1.124

kpfleming kpfleming
Tue Nov 8 16:41:51 CST 2005


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv24442/apps

Modified Files:
	app_meetme.c 
Log Message:
whitepace cleanup and various minor fixes


Index: app_meetme.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_meetme.c,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -d -r1.123 -r1.124
--- app_meetme.c	8 Nov 2005 04:48:00 -0000	1.123
+++ app_meetme.c	8 Nov 2005 21:32:51 -0000	1.124
@@ -128,22 +128,22 @@
 
 static struct ast_conference {
 	char confno[AST_MAX_EXTENSION];		/* Conference */
-	struct ast_channel *chan;	/* Announcements channel */
-	int fd;				/* Announcements fd */
-	int zapconf;			/* Zaptel Conf # */
-	int users;			/* Number of active users */
-	int markedusers;		  /* Number of marked users */
-	struct ast_conf_user *firstuser;  /* Pointer to the first user struct */
-	struct ast_conf_user *lastuser;   /* Pointer to the last user struct */
-	time_t start;			/* Start time (s) */
[...1038 lines suppressed...]
 	int flags;
 	struct ast_filestream *s;
 	int res=0;
 
-	cnf = (struct ast_conference *)args;
-	if( !cnf || !cnf->chan ) {
+	if (!cnf || !cnf->chan) {
 		pthread_exit(0);
 	}
 	ast_stopstream(cnf->chan);
@@ -2145,7 +2152,9 @@
 int usecount(void)
 {
 	int res;
+
 	STANDARD_USECOUNT(res);
+
 	return res;
 }
 




More information about the svn-commits mailing list