diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-11-13 23:04:28 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-13 23:04:28 +0000 |
commit | 7e81c35cdc967e8babb73cd6f7e70b81ed404186 (patch) | |
tree | dc12ce6ccb6e01e63de954e495022b6293debc2a | |
parent | 0f125d9bcf016d092788a904e2b7a12121a153f6 (diff) |
to build with old gnutls verions, don't use the *_t types
-rw-r--r-- | lib/gtls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gtls.c b/lib/gtls.c index cc33deabf..5d3959cce 100644 --- a/lib/gtls.c +++ b/lib/gtls.c @@ -176,7 +176,7 @@ static CURLcode handshake(struct connectdata *conn, return CURLE_OK; } -static gnutls_x509_crt_fmt_t do_file_type(const char *type) +static gnutls_x509_crt_fmt do_file_type(const char *type) { if(!type || !type[0]) return GNUTLS_X509_FMT_PEM; |