diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-12-25 18:02:20 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-12-25 18:02:20 +0100 |
commit | 35c147a6fc15b787d88be6f0fb54bc9650d52731 (patch) | |
tree | 89baa5dbff24c6357d400ae3b57fd4975706703d /nslcd | |
parent | c5527db3081076cb41e3b1e7e184c32d2e9d2c93 (diff) |
remove NSLCD_RESULT_UNAVAIL because it's not needed anymore (the connection is broken when an error occurs) and rename NSLCD_RESULT_NOTFOUND into NSLCD_RESULT_END to better match its meaning
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@530 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd')
-rw-r--r-- | nslcd/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nslcd/common.h b/nslcd/common.h index 69b7b2f..4a8aa8b 100644 --- a/nslcd/common.h +++ b/nslcd/common.h @@ -141,7 +141,7 @@ int nslcd_shadow_all(TFILE *fp,MYLDAP_SESSION *session); writefn; \ } \ /* write the final result code */ \ - WRITE_INT32(fp,NSLCD_RESULT_NOTFOUND); \ + WRITE_INT32(fp,NSLCD_RESULT_END); \ return 0; \ } |