From: Colin Leroy Date: Sat, 11 Oct 2008 11:27:42 +0000 (+0000) Subject: 2008-10-11 [colin] 3.6.1cvs3 X-Git-Tag: rel_3_7_0~84 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=3b73df746c56062df22ec0877cc95fb3a66e8244 2008-10-11 [colin] 3.6.1cvs3 * src/common/ssl_certificate.c Make local function static --- diff --git a/ChangeLog b/ChangeLog index f0302d205..2cec922a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-11 [colin] 3.6.1cvs3 + + * src/common/ssl_certificate.c + Make local function static + 2008-10-10 [colin] 3.6.1cvs2 * src/common/ssl.h diff --git a/PATCHSETS b/PATCHSETS index 3ae80f2ba..f02c77192 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3584,3 +3584,4 @@ ( cvs diff -u -r 1.9.2.33 -r 1.9.2.34 src/common/ssl.c; ) > 3.6.0cvs25.patchset ( cvs diff -u -r 1.4.2.30 -r 1.4.2.31 src/common/ssl_certificate.c; cvs diff -u -r 1.9.2.24 -r 1.9.2.25 src/gtk/sslcertwindow.c; ) > 3.6.1cvs1.patchset ( cvs diff -u -r 1.2.2.10 -r 1.2.2.11 src/common/ssl.h; cvs diff -u -r 1.4.2.31 -r 1.4.2.32 src/common/ssl_certificate.c; cvs diff -u -r 1.9.2.25 -r 1.9.2.26 src/gtk/sslcertwindow.c; ) > 3.6.1cvs2.patchset +( cvs diff -u -r 1.4.2.32 -r 1.4.2.33 src/common/ssl_certificate.c; ) > 3.6.1cvs3.patchset diff --git a/configure.ac b/configure.ac index d91b23951..71e5ebcdb 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=6 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=2 +EXTRA_VERSION=3 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/common/ssl_certificate.c b/src/common/ssl_certificate.c index 2cfce302c..009cc33e8 100644 --- a/src/common/ssl_certificate.c +++ b/src/common/ssl_certificate.c @@ -649,7 +649,7 @@ char *ssl_certificate_check_signer (X509 *cert) return NULL; } #else -guint check_cert(gnutls_x509_crt cert) +static guint check_cert(gnutls_x509_crt cert) { gnutls_x509_crt *ca_list; unsigned int max = 512;