Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/nslcd
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2008-09-24 09:58:00 +0200
committerArthur de Jong <arthur@arthurdejong.org>2008-09-24 09:58:00 +0200
commit87eb22a73a7aa8056c7cd73d7515e2095b679d10 (patch)
treebbb970a93dc8dd61eda0ed7e1a73f2669172088e /nslcd
parent5dbb58107d0e6c9104f13bb9cecffe1e374267ae (diff)
log option name instead of option value for ldap_set_option() value
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@786 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd')
-rw-r--r--nslcd/myldap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nslcd/myldap.c b/nslcd/myldap.c
index 9a61cab..1d52613 100644
--- a/nslcd/myldap.c
+++ b/nslcd/myldap.c
@@ -358,7 +358,7 @@ static int do_sasl_interact(LDAP UNUSED(*ld),unsigned UNUSED(flags),void *defaul
rc=ldap_set_option(ld,option,invalue); \
if (rc!=LDAP_SUCCESS) \
{ \
- log_log(LOG_ERR,"ldap_set_option("__STRING(option)") failed: %s",ldap_err2string(rc)); \
+ log_log(LOG_ERR,"ldap_set_option(" #option ") failed: %s",ldap_err2string(rc)); \
return rc; \
}