From: Paul Mangan Date: Tue, 6 May 2003 16:30:15 +0000 (+0000) Subject: fix typo introduced in last sync X-Git-Tag: rel_0_9_0~52 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=f35dc77cd54579d01a00c1a433cc720a7068a956 fix typo introduced in last sync --- diff --git a/ChangeLog.claws b/ChangeLog.claws index d76a71950..59e7c5332 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-05-06 [paul] 0.8.11claws144 + + * src/common/ssl.c + fix typo introduced in sync + 2003-05-06 [paul] 0.8.11claws143 * sync with 0.8.11cvs39 diff --git a/configure.ac b/configure.ac index 92de9b629..916ca5d70 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=11 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws143 +EXTRA_VERSION=claws144 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/common/ssl.c b/src/common/ssl.c index ebd397a3f..15ebf1064 100644 --- a/src/common/ssl.c +++ b/src/common/ssl.c @@ -112,7 +112,7 @@ gboolean ssl_init_socket_with_method(SockInfo *sockinfo, SSLMethod method) /* Get the cipher */ debug_print(_("SSL connection using %s\n"), - SSL_get_cipher(sockinfo->ssl)); + SSL_get_cipher(ssl)); /* Get server's certificate (note: beware of dynamic allocation) */ if ((server_cert = SSL_get_peer_certificate(ssl)) == NULL) {