diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-10-21 16:24:37 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-10-21 16:24:37 +0200 |
commit | 63ed16010d6c6180803a7061d461f419bf9fd45b (patch) | |
tree | 9771674e1caba47db0660d7105564b4503577c4d /nss | |
parent | 7d41db3b2c1804644e21e1b0a104062a385cd964 (diff) |
fix a problem on Solaris (fixes r1793)
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1805 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nss')
-rw-r--r-- | nss/passwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/passwd.c b/nss/passwd.c index 43f0c0c..e2e11c2 100644 --- a/nss/passwd.c +++ b/nss/passwd.c @@ -165,7 +165,7 @@ static nss_status_t passwd_setpwent(nss_backend_t *be,void UNUSED(*args)) static nss_status_t passwd_getpwent(nss_backend_t *be,void *args) { NSS_GETENT(LDAP_BE(be)->fp,NSLCD_ACTION_PASSWD_ALL, - READ_RESULT(LDAP_BE(be)->fp)); + read_result(LDAP_BE(be)->fp,args)); } /* close the stream opened with setpwent() above */ |