being sent to remote consoles.
2) Fix pbx_gtkconsole to filter out the verbose marker.
(related to issue #12702)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@117507
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
static void network_verboser(const char *s)
{
+ if (*s == 127) {
+ s++;
+ }
ast_network_puts_mutable(s);
}
static void verboser(const char *stuff)
{
+ if (*stuff == 127) {
+ stuff++;
+ }
+
ast_mutex_lock(&verb_lock);
/* Lock appropriately if we're really being called in verbose mode */
__verboser(stuff);