X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/34292b1daab0fcd6ce02627497117d01aaa39a19..616741f32a737383dac1d19a7ef9020dabc39d45:/windows/winplink.c diff --git a/windows/winplink.c b/windows/winplink.c index 4ef2c980..c784a5dc 100644 --- a/windows/winplink.c +++ b/windows/winplink.c @@ -577,8 +577,8 @@ int main(int argc, char **argv) * (The input one we leave until we're through the * authentication process.) */ - stdout_handle = handle_output_new(outhandle, stdouterr_sent); - stderr_handle = handle_output_new(errhandle, stdouterr_sent); + stdout_handle = handle_output_new(outhandle, stdouterr_sent, NULL); + stderr_handle = handle_output_new(errhandle, stdouterr_sent, NULL); main_thread_id = GetCurrentThreadId(); @@ -593,7 +593,7 @@ int main(int argc, char **argv) DWORD ticks; if (!sending && back->sendok(backhandle)) { - stdin_handle = handle_input_new(inhandle, stdin_gotdata); + stdin_handle = handle_input_new(inhandle, stdin_gotdata, NULL); sending = TRUE; }