From: Colin Leroy Date: Sat, 20 Jan 2007 16:34:38 +0000 (+0000) Subject: 2007-01-20 [colin] 2.7.1cvs39 X-Git-Tag: rel_2_8_0~99 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=328a44f45da9e88028f40c08976c25d3832d792c 2007-01-20 [colin] 2.7.1cvs39 * src/editldap.c Fix tooltip --- diff --git a/ChangeLog b/ChangeLog index 2c2e61d38..76e7bbbfc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-20 [colin] 2.7.1cvs39 + + * src/editldap.c + Fix tooltip + 2007-01-20 [colin] 2.7.1cvs38 * src/ldapquery.c diff --git a/PATCHSETS b/PATCHSETS index 84a385645..a41de4538 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -2296,3 +2296,4 @@ ( cvs diff -u -r 1.96.2.165 -r 1.96.2.166 src/textview.c; ) > 2.7.1cvs36.patchset ( cvs diff -u -r 1.274.2.166 -r 1.274.2.167 src/mainwindow.c; cvs diff -u -r 1.39.2.30 -r 1.39.2.31 src/mainwindow.h; cvs diff -u -r 1.395.2.279 -r 1.395.2.280 src/summaryview.c; cvs diff -u -r 1.1.2.58 -r 1.1.2.59 src/gtk/quicksearch.c; ) > 2.7.1cvs37.patchset ( cvs diff -u -r 1.3.2.11 -r 1.3.2.12 src/ldapquery.c; cvs diff -u -r 1.1.4.6 -r 1.1.4.7 src/ldaputil.c; cvs diff -u -r 1.1.4.5 -r 1.1.4.6 src/ldaputil.h; ) > 2.7.1cvs38.patchset +( cvs diff -u -r 1.8.2.17 -r 1.8.2.18 src/editldap.c; ) > 2.7.1cvs39.patchset diff --git a/configure.ac b/configure.ac index 1186b9e28..bd89c4452 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=7 MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=38 +EXTRA_VERSION=39 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/editldap.c b/src/editldap.c index a8f63018a..30452fa33 100644 --- a/src/editldap.c +++ b/src/editldap.c @@ -474,12 +474,12 @@ static void addressbook_edit_ldap_page_basic( gint pageNum, gchar *pageLbl ) { gtk_tooltips_set_tip( toolTip, enable_tls_chkbtn, _( "Enable secure connection to the LDAP server via TLS." "If connection fails, be sure to check the correct " - "configuration in ldap.conf (TLS_CACERT or TLS_CACERTDIR fields)." ), + "configuration in ldap.conf (TLS_CACERTDIR and TLS_REQCERT fields)." ), NULL ); gtk_tooltips_set_tip( toolTip, enable_ssl_chkbtn, _( "Enable secure connection to the LDAP server via SSL." "If connection fails, be sure to check the correct " - "configuration in ldap.conf (TLS_CACERT or TLS_CACERTDIR fields)." ), + "configuration in ldap.conf (TLS_CACERTDIR and TLS_REQCERT fields)." ), NULL ); gtk_box_pack_start (GTK_BOX (hbox_spin), enable_tls_chkbtn, TRUE, FALSE, 0);