Skip to content

Commit

Permalink
Disable WEB-TLS instead of applying NO_TLS
Browse files Browse the repository at this point in the history
  • Loading branch information
zdohnal committed Aug 6, 2024
1 parent 5daa669 commit 28d3907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lprint.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ system_cb(
else if (!strcmp(valptr, "web-security") || !strncmp(valptr, "web-security,", 13))
soptions |= PAPPL_SOPTIONS_WEB_SECURITY;
else if (!strcmp(valptr, "no-tls") || !strncmp(valptr, "no-tls,", 7))
soptions |= PAPPL_SOPTIONS_NO_TLS;
soptions &= (pappl_soptions_t)~PAPPL_SOPTIONS_WEB_TLS;

if ((valptr = strchr(valptr, ',')) != NULL)
valptr ++;
Expand Down

0 comments on commit 28d3907

Please sign in to comment.