Skip to content

Commit 57061df

Browse files
committed
_httpWait's usessl parameter wasn't being used.
1 parent c982fe6 commit 57061df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cups/http.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3120,7 +3120,7 @@ _httpWait(http_t *http, // I - HTTP connection
31203120
}
31213121

31223122
// Check the TLS buffers for data first...
3123-
if (http->tls && _httpTLSPending(http))
3123+
if (usessl && http->tls && _httpTLSPending(http))
31243124
{
31253125
DEBUG_puts("5_httpWait: Return 1 since there is pending TLS data.");
31263126
return (1);

0 commit comments

Comments
 (0)