summaryrefslogtreecommitdiff
path: root/cups
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-03-04 15:56:42 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-03-04 15:56:42 +0000
commit4744bd907e6750c26bba4354d986e342406147ca (patch)
tree1dee14bb6163fc453ebe124dee65155384b46ad6 /cups
parentb423cd4cb9fa8cf030cc046a59c28196f3edf6b4 (diff)
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@75 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cups')
-rw-r--r--cups/http.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cups/http.c b/cups/http.c
index da2279344..dc0da3892 100644
--- a/cups/http.c
+++ b/cups/http.c
@@ -1,5 +1,5 @@
/*
- * "$Id: http.c 5200 2006-02-28 00:10:32Z mike $"
+ * "$Id: http.c 5222 2006-03-03 18:57:56Z mike $"
*
* HTTP routines for the Common UNIX Printing System (CUPS).
*
@@ -2278,7 +2278,7 @@ http_setup_ssl(http_t *http) /* I - HTTP connection */
gnutls_init(&(conn->session), GNUTLS_CLIENT);
gnutls_set_default_priority(conn->session);
gnutls_credentials_set(conn->session, GNUTLS_CRD_CERTIFICATE, *credentials);
- gnutls_transport_set_ptr(conn->session, http->fd);
+ gnutls_transport_set_ptr(conn->session, (gnutls_transport_ptr)http->fd);
if ((gnutls_handshake(conn->session)) != GNUTLS_E_SUCCESS)
{
@@ -2754,5 +2754,5 @@ http_write_ssl(http_t *http, /* I - HTTP connection */
/*
- * End of "$Id: http.c 5200 2006-02-28 00:10:32Z mike $".
+ * End of "$Id: http.c 5222 2006-03-03 18:57:56Z mike $".
*/