[asterisk-commits] russell: branch 1.6.0 r117516 - in /branches/1.6.0: ./ main/asterisk.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed May 21 13:29:28 CDT 2008
Author: russell
Date: Wed May 21 13:29:28 2008
New Revision: 117516
URL: http://svn.digium.com/view/asterisk?view=rev&rev=117516
Log:
Merged revisions 117515 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r117515 | russell | 2008-05-21 13:29:05 -0500 (Wed, 21 May 2008) | 12 lines
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:
branches/1.6.0/ (props changed)
branches/1.6.0/main/asterisk.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/main/asterisk.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/main/asterisk.c?view=diff&rev=117516&r1=117515&r2=117516
==============================================================================
--- branches/1.6.0/main/asterisk.c (original)
+++ branches/1.6.0/main/asterisk.c Wed May 21 13:29:28 2008
@@ -967,9 +967,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