From: Daniel Stenberg Date: Sat, 21 Oct 2023 08:28:08 +0000 (+0200) Subject: curl_ntlm_wb: fix elif typo X-Git-Tag: curl-8_5_0~219 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f76fcd6f4de1d838f008aa1d052f21d1e944e441;p=thirdparty%2Fcurl.git curl_ntlm_wb: fix elif typo Reported-by: Manfred Schwarb Follow-up to d4314cdf65ae Bug: https://github.com/curl/curl/commit/d4314cdf65aee295db627016934bd9eb621ab077#r130551295 --- diff --git a/lib/curl_ntlm_wb.c b/lib/curl_ntlm_wb.c index 0ff0887f63..b087a37a3d 100644 --- a/lib/curl_ntlm_wb.c +++ b/lib/curl_ntlm_wb.c @@ -70,7 +70,7 @@ to avoid fooling the socket leak detector */ #ifdef HAVE_PIPE # define sclose_nolog(x) close((x)) -#eliif defined(HAVE_CLOSESOCKET) +#elif defined(HAVE_CLOSESOCKET) # define sclose_nolog(x) closesocket((x)) #elif defined(HAVE_CLOSESOCKET_CAMEL) # define sclose_nolog(x) CloseSocket((x))