From: Michael R Sweet Date: Mon, 22 Sep 2025 17:20:14 +0000 (-0400) Subject: _httpWait's usessl parameter wasn't being used. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bad41a5feb68fc7d0a39f547a4cd64244e43b37d;p=thirdparty%2Fcups.git _httpWait's usessl parameter wasn't being used. --- 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);