I seem to have slightly funted Plink's display of banners etc in r6437, oops.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 5 Sep 2006 21:41:38 +0000 (21:41 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 5 Sep 2006 21:41:38 +0000 (21:41 +0000)
Fixed.

git-svn-id: svn://svn.tartarus.org/sgt/putty@6846 cda61777-01e9-0310-a592-d414129be87e

ssh.c

diff --git a/ssh.c b/ssh.c
index 808327d..8147485 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -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);
 }