From: Patrick Welche Date: Tue, 8 Dec 2009 07:08:47 +0000 (-0800) Subject: STACK* is not defined with newer SSL, use STACK_OF instead. X-Git-Tag: neomutt-20160307~434 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd3a94958e2a2e2bb7106a3ddf2bb9a0991a7b41;p=neomutt STACK* is not defined with newer SSL, use STACK_OF instead. Closes #3356. --- diff --git a/ChangeLog b/ChangeLog index c5fec0382..69e82789c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2009-12-07 22:46 -0800 Peter Rosin (fc9563de3dcb) + + * snprintf.c: Output %p as unsigned in the bundled snprintf + +2009-11-14 14:31 -0800 Brendan Cully (6928f522ac48) + + * curs_main.c: Back out e67f4c347bb4. + + I could not reproduce the problem, and the change makes it + impossible to change to a real folder when no folder is currently + open. + 2009-10-28 23:03 -0700 Brendan Cully (89fb586edda2) * sendlib.c: Unfold headers to wrap length in pager, when weed is set. diff --git a/mutt_ssl.c b/mutt_ssl.c index 30fc29c82..f66c0149f 100644 --- a/mutt_ssl.c +++ b/mutt_ssl.c @@ -652,7 +652,7 @@ static int check_host (X509 *x509cert, const char *hostname, char *err, size_t e char *buf = NULL; int bufsize; /* needed to get the DNS subjectAltNames: */ - STACK *subj_alt_names; + STACK_OF(GENERAL_NAME) *subj_alt_names; int subj_alt_names_count; GENERAL_NAME *subj_alt_name; /* did we find a name matching hostname? */