From 17fcd67e834659d029fc919c2041c2aca9514a3f 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 924422674..0fea843d9 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.50.0