From 30b27371c510f1f8af11417fe5c0364c48210372 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 12 Jun 2026 16:57:51 +0200 Subject: [PATCH] rustls.c fixup --- lib/vtls/rustls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vtls/rustls.c b/lib/vtls/rustls.c index b598a174fb..14b755b99a 100644 --- a/lib/vtls/rustls.c +++ b/lib/vtls/rustls.c @@ -45,7 +45,7 @@ #include "curlx/base64.h" #endif -#if EAGAIN != SOCKEWOULDBLOCK +#if EAGAIN != EWOULDBLOCK #define RAW_EWOULDBLOCK_EAGAIN(e) ((e) == EWOULDBLOCK || (e) == EAGAIN) #else #define RAW_EWOULDBLOCK_EAGAIN(e) ((e) == EWOULDBLOCK)