]> granicus.if.org Git - mutt/commitdiff
STACK* is not defined with newer SSL, use STACK_OF instead.
authorPatrick Welche <prlw1@cam.ac.uk>
Tue, 8 Dec 2009 07:08:47 +0000 (23:08 -0800)
committerPatrick Welche <prlw1@cam.ac.uk>
Tue, 8 Dec 2009 07:08:47 +0000 (23:08 -0800)
Closes #3356.

ChangeLog
mutt_ssl.c

index c5fec0382a092c8efb0a1bdea18c11c1054ffcf1..69e82789cacc519959c0677fe8261c72b6854da3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2009-12-07 22:46 -0800  Peter Rosin  <peda@lysator.liu.se>  (fc9563de3dcb)
+
+       * snprintf.c: Output %p as unsigned in the bundled snprintf
+
+2009-11-14 14:31 -0800  Brendan Cully  <brendan@kublai.com>  (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  <brendan@kublai.com>  (89fb586edda2)
 
        * sendlib.c: Unfold headers to wrap length in pager, when weed is set.
index 30fc29c82803352d18f8566b1388c199bee59295..f66c0149fef5d88578a19dc2aa3588cdeb1b6f35 100644 (file)
@@ -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? */