[asterisk-commits] russell: trunk r117515 - in /trunk: ./ main/asterisk.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed May 21 13:29:06 CDT 2008
Author: russell
Date: Wed May 21 13:29:05 2008
New Revision: 117515
URL: http://svn.digium.com/view/asterisk?view=rev&rev=117515
Log:
Merged revisions 117514 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r117514 | russell | 2008-05-21 13:28:46 -0500 (Wed, 21 May 2008) | 4 lines
Don't filter the magic character in the network verboser. It gets filtered
once it reaches the client.
(related to issue #12702, pointed out by tilghman)
........
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=117515&r1=117514&r2=117515
==============================================================================
--- trunk/main/asterisk.c (original)
+++ trunk/main/asterisk.c Wed May 21 13:29:05 2008
@@ -964,9 +964,6 @@
static void network_verboser(const char *s)
{
- if (*s == 127) {
- s++;
- }
ast_network_puts_mutable(s);
}
More information about the asterisk-commits
mailing list