summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2010-07-18 11:27:41 +0000
committerArthur de Jong <arthur@arthurdejong.org>2010-07-18 11:27:41 +0000
commit539c1c1524fdeb512c8eec9ea736e7e611da29a8 (patch)
tree2a36976fd68ece56ec727f9635e147bd541e8bfb
parente395a26cd3c16874a14c75dc73931af2374c7253 (diff)
fix comment
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1165 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r--nslcd/pam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nslcd/pam.c b/nslcd/pam.c
index 6b1b942..ddbe107 100644
--- a/nslcd/pam.c
+++ b/nslcd/pam.c
@@ -148,8 +148,8 @@ int nslcd_pam_authc(TFILE *fp,MYLDAP_SESSION *session)
/* write the response header */
WRITE_INT32(fp,NSLCD_VERSION);
WRITE_INT32(fp,NSLCD_ACTION_PAM_AUTHC);
- /* if the username is blank and rootpwmoddn is configure, try to authenticate
- as administrator, otherwise validate request as usual */
+ /* if the username is blank and rootpwmoddn is configured, try to
+ authenticate as administrator, otherwise validate request as usual */
if ((*username=='\0')&&(nslcd_cfg->ldc_rootpwmoddn!=NULL))
{
if (strlen(nslcd_cfg->ldc_rootpwmoddn)>=sizeof(userdn))