Merged revisions 115415 via svnmerge from

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
1.6.1
Tilghman Lesher 17 years ago
parent e9f62e1d41
commit ff01792e50

@ -2454,7 +2454,7 @@ static void ast_remotecontrol(char * data)
/* Skip verbose lines */ /* Skip verbose lines */
if (*curline != 127) { if (*curline != 127) {
not_written = 0; not_written = 0;
write(STDOUT_FILENO, curline, nextline - curline + (*nextline == '\0' ? 1 : 0)); write(STDOUT_FILENO, curline, nextline - curline);
} }
curline = nextline; curline = nextline;
} while (!ast_strlen_zero(curline)); } while (!ast_strlen_zero(curline));

Loading…
Cancel
Save