From bad41a5feb68fc7d0a39f547a4cd64244e43b37d Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 22 Sep 2025 13:20:14 -0400 Subject: [PATCH] _httpWait's usessl parameter wasn't being used. --- cups/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cups/http.c b/cups/http.c index d31bc76b09..7a42cb3d69 100644 --- a/cups/http.c +++ b/cups/http.c @@ -3039,7 +3039,7 @@ _httpWait(http_t *http, /* I - HTTP connection */ */ #ifdef HAVE_TLS - if (http->tls && _httpTLSPending(http)) + if (usessl && http->tls && _httpTLSPending(http)) { DEBUG_puts("5_httpWait: Return 1 since there is pending TLS data."); return (1); -- 2.47.3