[asterisk-commits] russell: branch 1.4 r117514 - /branches/1.4/main/asterisk.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed May 21 13:28:47 CDT 2008
Author: russell
Date: Wed May 21 13:28:46 2008
New Revision: 117514
URL: http://svn.digium.com/view/asterisk?view=rev&rev=117514
Log:
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.4/main/asterisk.c
Modified: branches/1.4/main/asterisk.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/asterisk.c?view=diff&rev=117514&r1=117513&r2=117514
==============================================================================
--- branches/1.4/main/asterisk.c (original)
+++ branches/1.4/main/asterisk.c Wed May 21 13:28:46 2008
@@ -906,9 +906,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