From: Russell Bryant Date: Wed, 21 May 2008 18:28:46 +0000 (+0000) Subject: Don't filter the magic character in the network verboser. It gets filtered X-Git-Tag: 1.4.21-rc1~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67634386e978558299151910f06885edb40b8550;p=thirdparty%2Fasterisk.git 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 --- diff --git a/main/asterisk.c b/main/asterisk.c index eb4d79d1a6..ef6c64de67 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -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); }