secur32: Don't use deprecated gnutls_certificate_credentials.

oldstable
Jacek Caban 2013-06-28 18:04:52 +02:00 committed by Alexandre Julliard
parent faeb9a5bfc
commit 6c2f7d01c8
1 changed files with 1 additions and 1 deletions

View File

@ -441,7 +441,7 @@ again:
BOOL schan_imp_allocate_certificate_credentials(schan_credentials *c)
{
int ret = pgnutls_certificate_allocate_credentials((gnutls_certificate_credentials*)&c->credentials);
int ret = pgnutls_certificate_allocate_credentials((gnutls_certificate_credentials_t*)&c->credentials);
if (ret != GNUTLS_E_SUCCESS)
pgnutls_perror(ret);
return (ret == GNUTLS_E_SUCCESS);