X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Ftcpip.c;h=715d0cf93116ce8339621f2a964b2dfd5ffc2666;hp=ffbcf44e0d13d5693841c59a19bdec9e23466eeb;hb=4fc0e0c70a077abd8009e139315a54a0e0ddd293;hpb=ac63793036c6d830d002241a750691b26235b3e1 diff --git a/src/tcpip.c b/src/tcpip.c index ffbcf44..715d0cf 100644 --- a/src/tcpip.c +++ b/src/tcpip.c @@ -610,8 +610,10 @@ int tcpip_rcvconnect(COMSTACK h) gnutls_credentials_set (sp->session, GNUTLS_CRD_CERTIFICATE, sp->cred_ptr->xcred); - gnutls_transport_set_ptr(sp->session, (gnutls_transport_ptr_t) h->iofile); - + /* cast to intermediate size_t to avoid GCC warning. */ + gnutls_transport_set_ptr(sp->session, + (gnutls_transport_ptr_t) + (size_t) h->iofile); res = gnutls_handshake(sp->session); if (res < 0) { @@ -965,8 +967,10 @@ COMSTACK tcpip_accept(COMSTACK h) xfree(state); return 0; } + /* cast to intermediate size_t to avoid GCC warning. */ gnutls_transport_set_ptr(state->session, - (gnutls_transport_ptr_t) cnew->iofile); + (gnutls_transport_ptr_t) + (size_t) cnew->iofile); } #elif HAVE_OPENSSL_SSL_H state->ctx = st->ctx;