[svn-commits] jrose: branch 1.8 r312765 - in /branches/1.8: ./ apps/app_meetme.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Apr 5 09:13:18 CDT 2011
Author: jrose
Date: Tue Apr 5 09:13:15 2011
New Revision: 312765
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=312765
Log:
Merged revisions 312762 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2
........
r312762 | jrose | 2011-04-05 09:11:36 -0500 (Tue, 05 Apr 2011) | 1 line
Backporting trunk change to add verbosity to 'L' option in meetme
........
Modified:
branches/1.8/ (props changed)
branches/1.8/apps/app_meetme.c
Propchange: branches/1.8/
------------------------------------------------------------------------------
Binary property 'branch-1.6.2-merged' - no diff available.
Modified: branches/1.8/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_meetme.c?view=diff&rev=312765&r1=312764&r2=312765
==============================================================================
--- branches/1.8/apps/app_meetme.c (original)
+++ branches/1.8/apps/app_meetme.c Tue Apr 5 09:13:15 2011
@@ -2287,7 +2287,15 @@
play_warning = warning_freq = 0;
}
}
-
+
+ ast_verb(3, "Setting conference duration limit to: %ldms.\n", timelimit);
+ if (play_warning) {
+ ast_verb(3, "Setting warning time to %ldms from the conference duration limit.\n", play_warning);
+ }
+ if (warning_freq) {
+ ast_verb(3, "Setting warning frequency to %ldms.\n", warning_freq);
+ }
+
ast_channel_lock(chan);
if ((var = pbx_builtin_getvar_helper(chan, "CONF_LIMIT_WARNING_FILE"))) {
var = ast_strdupa(var);
More information about the svn-commits
mailing list