Skip to content

Commit

Permalink
Fix build in Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Jun 18, 2024
1 parent e185038 commit a8af4b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cups/tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ http_check_roots(const char *creds) // I - Credentials
if (!tls_root_certs)
{
// Load root certificates...
tls_root_certs = cupsArrayNew(/*cb*/NULL, /*cb_data*/NULL, /*hash_cb*/NULL, /*hash_size*/0, /*copy_cb*/NULL, /*free_cb*/NULL);
tls_root_certs = cupsArrayNew3(/*cb*/NULL, /*cb_data*/NULL, /*hash_cb*/NULL, /*hash_size*/0, /*copy_cb*/NULL, /*free_cb*/NULL);

# ifdef _WIN32
int i; // Looping var
Expand Down

0 comments on commit a8af4b4

Please sign in to comment.