X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=windows%2Fwinplink.c;h=c784a5dc7c60b6559fdeb9933dae6778f066bea8;hb=52cdcc6a7c9fce59e186539961f9cd9793ee2998;hp=4ef2c980a61ed4ef519ca0b967400eef584e79ba;hpb=291533d3f9abb6f33ebe2a73f34420fc9f8e9433;p=PuTTY.git 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; }