From: Daniel Stenberg Date: Sun, 13 Nov 2005 23:04:28 +0000 (+0000) Subject: to build with old gnutls verions, don't use the *_t types X-Git-Tag: curl-7_15_1~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e81c35cdc967e8babb73cd6f7e70b81ed404186;p=thirdparty%2Fcurl.git to build with old gnutls verions, don't use the *_t types --- diff --git a/lib/gtls.c b/lib/gtls.c index cc33deabfd..5d3959cce2 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;