1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-27 02:02:26 +00:00

I seem to have slightly funted Plink's display of banners etc in r6437, oops.

Fixed.

[originally from svn r6846]
[r6437 == 8719f92c14]
This commit is contained in:
Jacob Nevins 2006-09-05 21:41:38 +00:00
parent e67b9cfd78
commit 2afdb02660

2
ssh.c
View File

@ -1052,7 +1052,7 @@ static void c_write_stderr(int trusted, const char *buf, int len)
{ {
int i; int i;
for (i = 0; i < len; i++) for (i = 0; i < len; i++)
if (buf[i] != '\r' && (trusted || buf[i] & 0x60)) if (buf[i] != '\r' && (trusted || buf[i] == '\n' || (buf[i] & 0x60)))
fputc(buf[i], stderr); fputc(buf[i], stderr);
} }