aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/backend/pas/pas-backend-ldap.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index b292a8fddb..e83f41d9bf 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,10 @@
2003-01-09 Chris Toshok <toshok@ximian.com>
+ * backend/pas/pas-backend-ldap.c (query_ldap_root_dse): doh, fix
+ build error.
+
+2003-01-09 Chris Toshok <toshok@ximian.com>
+
* gui/component/select-names/e-select-names-popup.c: #include
gtklabel.h, fixes an unresolved symbol.
diff --git a/addressbook/backend/pas/pas-backend-ldap.c b/addressbook/backend/pas/pas-backend-ldap.c
index 3ef2bcb4dd..09a6d258de 100644
--- a/addressbook/backend/pas/pas-backend-ldap.c
+++ b/addressbook/backend/pas/pas-backend-ldap.c
@@ -594,11 +594,11 @@ query_ldap_root_dse (PASBackendLDAP *bl)
g_object_unref (bl->priv->supported_auth_methods);
bl->priv->supported_auth_methods = e_list_new ((EListCopyFunc)g_strdup, (EListFreeFunc)g_free, NULL);
- auth_method = g_strdup_printf ("ldap/simple-binddn|%s", _());
+ auth_method = g_strdup_printf ("ldap/simple-binddn|%s", _("Using Distinguished Name (DN)"));
e_list_append (bl->priv->supported_auth_methods, auth_method);
g_free (auth_method);
- auth_method = g_strdup_printf ("ldap/simple-email|%s");
+ auth_method = g_strdup_printf ("ldap/simple-email|%s", _("Using Email Address"));
e_list_append (bl->priv->supported_auth_methods, auth_method);
g_free (auth_method);