From: simon Date: Thu, 19 Dec 2002 11:51:42 +0000 (+0000) Subject: logeventf() shouldn't throw stuff at stderr, since it invokes the X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/e2277a0a3912e6c4fea605d269c94609b0a7dfc4 logeventf() shouldn't throw stuff at stderr, since it invokes the ssh.c logevent _macro_ which has already done so! Duhh. git-svn-id: svn://svn.tartarus.org/sgt/putty@2356 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/ssh.c b/ssh.c index 62f2a8e2..0ac24d26 100644 --- a/ssh.c +++ b/ssh.c @@ -656,10 +656,6 @@ void logeventf(Ssh ssh, char *fmt, ...) buf = dupvprintf(fmt, ap); va_end(ap); logevent(buf); - if ((flags & FLAG_STDERR) && (flags & FLAG_VERBOSE)) { - fprintf(stderr, "%s\n", buf); - fflush(stderr); - } sfree(buf); }