From bbd481b271402fe1c6ac8bec53596b4718313d34 Mon Sep 17 00:00:00 2001 From: dmiller Date: Thu, 5 Jan 2023 23:46:20 +0000 Subject: [PATCH] Fix typo --- ncat/ncat_exec_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ncat/ncat_exec_win.c b/ncat/ncat_exec_win.c index d927f2814..b8fd86f4b 100644 --- a/ncat/ncat_exec_win.c +++ b/ncat/ncat_exec_win.c @@ -437,7 +437,7 @@ static DWORD WINAPI subprocess_thread_func(void *data) /* return value can be 0 without meaning EOF in some cases such as SSL * renegotiations that require read/write socket operations but do not * have any application data. */ - if(n == 0 && fdn->lasterr == 0) { + if(n == 0 && info->fdn.lasterr == 0) { continue; /* Check pending */ } goto loop_end;