From 299de0b3590c0a3bfecec9338bfb02e3117304fd Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Fri, 6 Aug 2010 10:05:43 -0700 Subject: [PATCH] fix compiler warning about wrong type for SslSessionCerts --- mutt_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutt_ssl.c b/mutt_ssl.c index 92442267..0fea843d 100644 --- a/mutt_ssl.c +++ b/mutt_ssl.c @@ -817,7 +817,7 @@ static int ssl_cache_trusted_cert (X509 *c) { dprint (1, (debugfile, "trusted: %s\n", c->name)); if (!SslSessionCerts) - SslSessionCerts = sk_new_null(); + SslSessionCerts = sk_X509_new_null(); return (sk_X509_push (SslSessionCerts, X509_dup(c))); } -- 2.40.0