On Tue, 2004-11-16 at 09:10, Matt Riddell wrote:
> Jens Hansen wrote:
> > Thanks for your help.
> > 
> > I solved it by switching to mysql. Since i got both of them running it was
> > no problem.
> > 
> > Jens
> 
> Cool.  However, we may as well fix it.
> 
> Who maintains it?

Arezqui Belaďd seems to be the one maintaining it.
Download is done from:
http://www.areski.net/asterisk-meetme/about.php?s=0

Hi Arezqui,

could you please have a look at MeetMe2 ? It seems that the Webinterface
is using "LIMIT" in the SQL queries, even when you switch to postgresql
(and that of course doesn't work). So Users won't show up in the rooms.

Besides that, find attached the patch to make it compile with Asterisk
1.0.2.

 
Slán leat,
Martin List-Petersen
Dublin, Eire 
(contact info on --> http://www.marlow.dk/)
--- app_meetme2.c	2004-04-07 12:37:18.000000000 +0100
+++ /home/marlow/app_meetme2.c	2004-11-16 16:10:08.000000000 +0000
@@ -643,7 +643,7 @@
 } *confs;
 
 
-static ast_mutex_t conflock = AST_MUTEX_INITIALIZER;
+AST_MUTEX_DEFINE_STATIC(conflock);
 
 #include "enter.h"
 #include "leave.h"
@@ -1545,7 +1545,7 @@
 	}else{
 	        if (chan->_state != AST_STATE_UP)
 	                ast_answer(chan);
-	        res = ast_say_number(chan, cnt, "", chan->language);
+	        res = ast_say_number(chan, cnt, "", chan->language, (char *) NULL);
 	}
 	LOCAL_USER_REMOVE(u);
 	return res;
_______________________________________________
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to