aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-05-07 18:27:36 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-05-07 18:27:36 +0000
commitb9cd73c76d6f24dd9a59fb603ab9ad92c6076f72 (patch)
tree59f0593fc56bf57fe02196cb0aa6a2d278312d24
parentb62c230ca26b8080b3b5be8f42b48a6fa733d716 (diff)
Fix GnuTLS compile warning. Risking breakage with some older version of GnuTLS?
-rw-r--r--lib/urldata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index fd38d3e4f..8e47a6543 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -158,7 +158,7 @@ struct ssl_connect_data {
#endif /* USE_SSLEAY */
#ifdef USE_GNUTLS
gnutls_session session;
- gnutls_anon_client_credentials cred;
+ gnutls_certificate_credentials cred;
#endif /* USE_GNUTLS */
};