[svn-commits] oej: branch oej/pinelonely-meetme-single-user-hangup r311475 - /team/oej/pine...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Mar 21 11:39:03 CDT 2011


Author: oej
Date: Mon Mar 21 11:38:59 2011
New Revision: 311475

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=311475
Log:
Make sure we compile properly

Modified:
    team/oej/pinelonely-meetme-single-user-hangup/apps/app_meetme.c

Modified: team/oej/pinelonely-meetme-single-user-hangup/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/team/oej/pinelonely-meetme-single-user-hangup/apps/app_meetme.c?view=diff&rev=311475&r1=311474&r2=311475
==============================================================================
--- team/oej/pinelonely-meetme-single-user-hangup/apps/app_meetme.c (original)
+++ team/oej/pinelonely-meetme-single-user-hangup/apps/app_meetme.c Mon Mar 21 11:38:59 2011
@@ -591,6 +591,7 @@
 };
 
 
+static int user_set_kickme_cb(void *obj, void *unused, int flags);
 static int admin_exec(struct ast_channel *chan, void *data);
 static void *recordthread(void *args);
 
@@ -2575,7 +2576,7 @@
 			This flag is meant to kill a conference with only one person remaining.
 		 */
 		if (conf->users == 1 && (confflags & CONFFLAG_KILL_LAST_MAN_STANDING)) {
-			ao2_callback(cnf->usercontainer, 0, user_set_kickme_cb, NULL);
+			ao2_callback(conf->usercontainer, 0, user_set_kickme_cb, NULL);
 		}
 		
 		/* Return the number of seconds the user was in the conf */




More information about the svn-commits mailing list