[svn-commits] pabelanger: trunk r272259 - /trunk/apps/app_meetme.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jun 23 16:06:18 CDT 2010


Author: pabelanger
Date: Wed Jun 23 16:06:15 2010
New Revision: 272259

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=272259
Log:
Fix previous merge. ast_test_flag != ast_test_flag64

Modified:
    trunk/apps/app_meetme.c

Modified: trunk/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_meetme.c?view=diff&rev=272259&r1=272258&r2=272259
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Wed Jun 23 16:06:15 2010
@@ -4141,9 +4141,9 @@
 				}
 			} else {
 				if (((!ast_strlen_zero(cnf->pin) &&
-				    !ast_test_flag(&confflags, CONFFLAG_ADMIN)) ||
+				    !ast_test_flag64(&confflags, CONFFLAG_ADMIN)) ||
 				    (!ast_strlen_zero(cnf->pinadmin) &&
-				    ast_test_flag(&confflags, CONFFLAG_ADMIN))) &&
+				    ast_test_flag64(&confflags, CONFFLAG_ADMIN))) &&
 				    (!(cnf->users == 0 && cnf->isdynamic))) {
 					char pin[MAX_PIN] = "";
 					int j;




More information about the svn-commits mailing list