aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-01-10 10:02:57 +0800
committerChris Toshok <toshok@src.gnome.org>2003-01-10 10:02:57 +0800
commit7a00f56defc7956b6025eb30c03713971dd1f6fc (patch)
tree724d57a5b125195eaa617b1abaee809f6b6e02e0 /addressbook/backend
parentd589c6974ed1da251fc62534fd4fec3b65f5d9f1 (diff)
downloadgsoc2013-evolution-7a00f56defc7956b6025eb30c03713971dd1f6fc.tar
gsoc2013-evolution-7a00f56defc7956b6025eb30c03713971dd1f6fc.tar.gz
gsoc2013-evolution-7a00f56defc7956b6025eb30c03713971dd1f6fc.tar.bz2
gsoc2013-evolution-7a00f56defc7956b6025eb30c03713971dd1f6fc.tar.lz
gsoc2013-evolution-7a00f56defc7956b6025eb30c03713971dd1f6fc.tar.xz
gsoc2013-evolution-7a00f56defc7956b6025eb30c03713971dd1f6fc.tar.zst
gsoc2013-evolution-7a00f56defc7956b6025eb30c03713971dd1f6fc.zip
doh, fix build error.
2003-01-09 Chris Toshok <toshok@ximian.com> * backend/pas/pas-backend-ldap.c (query_ldap_root_dse): doh, fix build error. svn path=/trunk/; revision=19388
Diffstat (limited to 'addressbook/backend')
-rw-r--r--addressbook/backend/pas/pas-backend-ldap.c4
1 files changed, 2 insertions, 2 deletions
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);