]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/commitdiff
Fix a typo; thanks to Al Sutton
authorSimon Tatham <anakin@pobox.com>
Wed, 4 Oct 2000 10:02:25 +0000 (10:02 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 4 Oct 2000 10:02:25 +0000 (10:02 +0000)
git-svn-id: http://svn.tartarus.org/sgt/putty@667 cda61777-01e9-0310-a592-d414129be87e

scp.c

diff --git a/scp.c b/scp.c
index 7a0a22535ff92429e562bab4b2bf6b737f0b9613..8f9727632dde80d81dc5c71ad25bffc37060ee9d 100644 (file)
--- a/scp.c
+++ b/scp.c
@@ -94,7 +94,7 @@ void tell_char(FILE *stream, char c)
     else
     {
        unsigned int msg_id = WM_STD_OUT_CHAR;
-       if (stream = stderr) msg_id = WM_STD_ERR_CHAR;
+       if (stream == stderr) msg_id = WM_STD_ERR_CHAR;
        send_msg( (HWND)atoi(gui_hwnd), msg_id, (WPARAM)c );
     }
 }