diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2013-01-01 12:43:54 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2013-01-01 12:43:54 +0000 |
commit | 47f7fd10f87bfcb5240cf5b794ce9380bf671044 (patch) | |
tree | 072fb737100e0bbc06b3aa7fc7446bacf4094d1a | |
parent | 97fbbc49bae100b7ed805c9ca7b03dcfc36d20f8 (diff) |
fix setting restart option log message (fixes r1889)
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1892 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | nslcd/myldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nslcd/myldap.c b/nslcd/myldap.c index 39bdbe7..bacfb4f 100644 --- a/nslcd/myldap.c +++ b/nslcd/myldap.c @@ -5,7 +5,7 @@ Copyright (C) 1997-2006 Luke Howard Copyright (C) 2006, 2007 West Consulting - Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Arthur de Jong + Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Arthur de Jong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -670,7 +670,7 @@ static int do_set_options(MYLDAP_SESSION *session) nslcd_cfg->referrals ? "LDAP_OPT_ON" : "LDAP_OPT_OFF"); LDAP_SET_OPTION(session->ld, LDAP_OPT_REFERRALS, nslcd_cfg->referrals ? LDAP_OPT_ON : LDAP_OPT_OFF); - log_log(LOG_DEBUG, "ldap_set_option(LDAP_OPT_RESTART,%s)", LDAP_OPT_ON); + log_log(LOG_DEBUG, "ldap_set_option(LDAP_OPT_RESTART,LDAP_OPT_ON)"); LDAP_SET_OPTION(session->ld, LDAP_OPT_RESTART, LDAP_OPT_ON); #ifdef LDAP_OPT_CONNECT_CB /* register a connection callback */ |