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)


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@117514 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2008-05-21 18:28:46 +00:00
parent 2c4b2d92dd
commit 67634386e9

View File

@@ -906,9 +906,6 @@ void ast_console_puts(const char *string)
static void network_verboser(const char *s)
{
if (*s == 127) {
s++;
}
ast_network_puts_mutable(s);
}