mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-21 04:46:29 +00:00
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
This commit is contained in:
@@ -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));
|
||||||
|
Reference in New Issue
Block a user