From: Michael R Sweet Date: Mon, 22 Sep 2025 17:19:30 +0000 (-0400) Subject: _httpWait's usessl parameter wasn't being used. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57061df3a86e5d4617085760282ba547d7b4bcb8;p=thirdparty%2Fcups.git _httpWait's usessl parameter wasn't being used. --- diff --git a/cups/http.c b/cups/http.c index 671d831cc8..5c0c6a04fa 100644 --- a/cups/http.c +++ b/cups/http.c @@ -3120,7 +3120,7 @@ _httpWait(http_t *http, // I - HTTP connection } // Check the TLS buffers for data first... - 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);