https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r115415 | tilghman | 2008-05-06 14:31:39 -0500 (Tue, 06 May 2008) | 2 lines
Don't print the terminating NUL. (Closes issue #12589)
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115416
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
/* Skip verbose lines */
if (*curline != 127) {
not_written = 0;
- write(STDOUT_FILENO, curline, nextline - curline + (*nextline == '\0' ? 1 : 0));
+ write(STDOUT_FILENO, curline, nextline - curline);
}
curline = nextline;
} while (!ast_strlen_zero(curline));