[svn-commits] russell: trunk r85546 - in /trunk: ./ main/asterisk.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Oct 15 08:07:49 CDT 2007
Author: russell
Date: Mon Oct 15 08:07:48 2007
New Revision: 85546
URL: http://svn.digium.com/view/asterisk?view=rev&rev=85546
Log:
Merged revisions 85545 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r85545 | russell | 2007-10-15 08:05:45 -0500 (Mon, 15 Oct 2007) | 7 lines
Make sure remote consoles unmute themselves again after reconnecting.
(closes issue #10847)
Reported by: atis
Patches:
console_unmute_on_reconnect.patch uploaded by atis (license 242)
........
Modified:
trunk/ (props changed)
trunk/main/asterisk.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/main/asterisk.c
URL: http://svn.digium.com/view/asterisk/trunk/main/asterisk.c?view=diff&rev=85546&r1=85545&r2=85546
==============================================================================
--- trunk/main/asterisk.c (original)
+++ trunk/main/asterisk.c Mon Oct 15 08:07:48 2007
@@ -1806,6 +1806,10 @@
fprintf(stderr, "Reconnect succeeded after %.3f seconds\n", 1.0 / reconnects_per_second * tries);
printf(term_quit());
WELCOME_MESSAGE;
+ if (!ast_opt_mute)
+ fdprint(ast_consock, "logger mute silent");
+ else
+ printf("log and verbose output currently muted ('logger mute' to unmute)\n");
break;
} else
usleep(1000000 / reconnects_per_second);
More information about the svn-commits
mailing list