mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-07 02:18:15 +00:00
Merged revisions 117481 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r117481 | russell | 2008-05-21 13:12:19 -0500 (Wed, 21 May 2008) | 14 lines Merged revisions 117479 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r117479 | russell | 2008-05-21 13:11:51 -0500 (Wed, 21 May 2008) | 6 lines Don't display the verbose marker for calls to ast_verbose() that do not include a VERBOSE_PREFIX in front of the message. (closes issue #12702) Reported by: johnlange Patched by me ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@117486 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1445,8 +1445,12 @@ static void console_verboser(const char *s)
|
||||
(c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_1))) {
|
||||
fputs(tmp, stdout);
|
||||
fputs(c, stdout);
|
||||
} else
|
||||
} else {
|
||||
if (*s == 127) {
|
||||
s++;
|
||||
}
|
||||
fputs(s, stdout);
|
||||
}
|
||||
|
||||
fflush(stdout);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user