Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fails to build with GNU TLS #128

Closed
michaelrsweet opened this issue May 27, 2003 · 1 comment
Closed

Fails to build with GNU TLS #128

michaelrsweet opened this issue May 27, 2003 · 1 comment

Comments

@michaelrsweet
Copy link
Collaborator

Version: 1.1.19rc5
CUPS.org User: jeff.licquia

Part of a fix introduced in 1.1.19rc5 was mis-written for GNU TLS, causing link failures with anything that links to libcups. It seems to have been just a typo.

Patch:

--- cups/http.c (revision 123)
+++ cups/http.c (revision 124)
@@ -1110,7 +1110,7 @@
if (SSL_pending((SSL *)(http->tls)))
return (1);

elif defined(HAVE_GNUTLS)

  • if (gnutls_check_pending(((http_tls_t *)(http->tls))->session))
  • if (gnutls_record_check_pending(((http_tls_t _)(http->tls))->session))
    return (1);

elif defined(HAVE_CDSASSL)

 size_t bytes;                      /_ Bytes that are available */
@michaelrsweet
Copy link
Collaborator Author

CUPS.org User: mike

Fix applied to CVS for 1.1.19; thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant