aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/addressbook-config.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-08-17 03:16:07 +0800
committerChris Toshok <toshok@src.gnome.org>2002-08-17 03:16:07 +0800
commit6c2e746a7d99f1f1859b07c07eecf476fb5d0831 (patch)
tree546f34da8fc7e642e6027166fd1579fe9eaba675 /addressbook/gui/component/addressbook-config.c
parenta2b9e3611183d9aa33b15fa53a0901b178d87b65 (diff)
downloadgsoc2013-evolution-6c2e746a7d99f1f1859b07c07eecf476fb5d0831.tar
gsoc2013-evolution-6c2e746a7d99f1f1859b07c07eecf476fb5d0831.tar.gz
gsoc2013-evolution-6c2e746a7d99f1f1859b07c07eecf476fb5d0831.tar.bz2
gsoc2013-evolution-6c2e746a7d99f1f1859b07c07eecf476fb5d0831.tar.lz
gsoc2013-evolution-6c2e746a7d99f1f1859b07c07eecf476fb5d0831.tar.xz
gsoc2013-evolution-6c2e746a7d99f1f1859b07c07eecf476fb5d0831.tar.zst
gsoc2013-evolution-6c2e746a7d99f1f1859b07c07eecf476fb5d0831.zip
fix c&p error that was losing the ssl setting.
2002-08-16 Chris Toshok <toshok@ximian.com> * gui/component/addressbook-config.c (addressbook_source_dialog_set_source): fix c&p error that was losing the ssl setting. svn path=/trunk/; revision=17792
Diffstat (limited to 'addressbook/gui/component/addressbook-config.c')
-rw-r--r--addressbook/gui/component/addressbook-config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c
index 8a92c400ab..7682f815ab 100644
--- a/addressbook/gui/component/addressbook-config.c
+++ b/addressbook/gui/component/addressbook-config.c
@@ -292,7 +292,7 @@ addressbook_source_dialog_set_source (AddressbookSourceDialog *dialog, Addressbo
dialog->scope = source ? source->scope : ADDRESSBOOK_LDAP_SCOPE_ONELEVEL;
gtk_option_menu_set_history (GTK_OPTION_MENU(dialog->scope_optionmenu), dialog->scope);
- dialog->ssl = source ? source->auth : ADDRESSBOOK_LDAP_SSL_WHENEVER_POSSIBLE;
+ dialog->ssl = source ? source->ssl : ADDRESSBOOK_LDAP_SSL_WHENEVER_POSSIBLE;
gtk_option_menu_set_history (GTK_OPTION_MENU(dialog->ssl_optionmenu), dialog->ssl);
}