From: Colin Leroy Date: Sun, 24 Aug 2008 10:06:11 +0000 (+0000) Subject: 2008-08-24 [colin] 3.5.0cvs70 X-Git-Tag: rel_3_6_0~84 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=9aa189c7f7224dcf53fecfdee41e4fbf2cbc903d 2008-08-24 [colin] 3.5.0cvs70 * src/common/ssl.c Fix typo on SSL_CERT_DIR --- diff --git a/ChangeLog b/ChangeLog index 5543a160d..21643d6b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-08-24 [colin] 3.5.0cvs70 + + * src/common/ssl.c + Fix typo on SSL_CERT_DIR + 2008-08-23 [holger] 3.5.0cvs69 * src/printing.c diff --git a/PATCHSETS b/PATCHSETS index 807aaa393..2f7210452 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3481,3 +3481,4 @@ ( cvs diff -u -r 1.382.2.469 -r 1.382.2.470 src/compose.c; cvs diff -u -r 1.50.2.49 -r 1.50.2.50 src/compose.h; cvs diff -u -r 1.274.2.268 -r 1.274.2.269 src/mainwindow.c; cvs diff -u -r 1.395.2.382 -r 1.395.2.383 src/summaryview.c; ) > 3.5.0cvs67.patchset ( cvs diff -u -r 1.274.2.269 -r 1.274.2.270 src/mainwindow.c; ) > 3.5.0cvs68.patchset ( cvs diff -u -r 1.1.2.14 -r 1.1.2.15 src/printing.c; ) > 3.5.0cvs69.patchset +( cvs diff -u -r 1.9.2.31 -r 1.9.2.32 src/common/ssl.c; ) > 3.5.0cvs70.patchset diff --git a/configure.ac b/configure.ac index ae84b9838..3e22a90c4 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=5 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=69 +EXTRA_VERSION=70 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/common/ssl.c b/src/common/ssl.c index 262bddb31..13ea11998 100644 --- a/src/common/ssl.c +++ b/src/common/ssl.c @@ -185,8 +185,8 @@ const gchar *claws_ssl_get_cert_dir(void) NULL}; int i; - if (g_getenv("SSL_CERT_FILE")) - return g_getenv("SSL_CERT_FILE"); + if (g_getenv("SSL_CERT_DIR")) + return g_getenv("SSL_CERT_DIR"); #ifndef G_OS_WIN32 for (i = 0; cert_dirs[i]; i++) { if (is_dir_exist(cert_dirs[i]))