Skip to content

Commit a140656

Browse files
committed
_httpWait's usessl parameter wasn't being used.
1 parent af9839c commit a140656

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
@@ -2729,7 +2729,7 @@ _httpWait(http_t *http, // I - HTTP connection
27292729
}
27302730

27312731
// Check the SSL/TLS buffers for data first...
2732-
if (http->tls && _httpTLSPending(http))
2732+
if (usessl && http->tls && _httpTLSPending(http))
27332733
{
27342734
DEBUG_puts("5_httpWait: Return 1 since there is pending TLS data.");
27352735
return (true);

0 commit comments

Comments
 (0)