]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Don't filter the magic character in the network verboser. It gets filtered
authorRussell Bryant <russell@russellbryant.com>
Wed, 21 May 2008 18:28:46 +0000 (18:28 +0000)
committerRussell Bryant <russell@russellbryant.com>
Wed, 21 May 2008 18:28:46 +0000 (18:28 +0000)
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

main/asterisk.c

index eb4d79d1a68d74ba7148a35f8f0a88b69f6772e8..ef6c64de67d75d6074540b309a9feec820a1a750 100644 (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);
 }