]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_ntlm_wb: fix elif typo
authorDaniel Stenberg <daniel@haxx.se>
Sat, 21 Oct 2023 08:28:08 +0000 (10:28 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 21 Oct 2023 08:29:02 +0000 (10:29 +0200)
Reported-by: Manfred Schwarb
Follow-up to d4314cdf65ae
Bug: https://github.com/curl/curl/commit/d4314cdf65aee295db627016934bd9eb621ab077#r130551295

lib/curl_ntlm_wb.c

index 0ff0887f63cd7b86050a1f1a1f7ba96d3b5b2e32..b087a37a3d31026938e171adba17bff0c850a8d0 100644 (file)
@@ -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))