1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +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;
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);
}