diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-11-29 02:20:13 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-11-29 02:20:13 -0500 |
commit | dba5f85e8f1943863b4cbab1ab52913c62365ce1 (patch) | |
tree | 08c1745b2c12b5f20b7f907e008026d952707293 /nslcd/db_passwd.c | |
parent | 8acfce5c8916bb98768e3e351b7614b4eaf5954a (diff) |
fix errors: the only erroring files left are db_pam.c and nslcd.c
Diffstat (limited to 'nslcd/db_passwd.c')
-rw-r--r-- | nslcd/db_passwd.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/nslcd/db_passwd.c b/nslcd/db_passwd.c index b72d869..2dad2da 100644 --- a/nslcd/db_passwd.c +++ b/nslcd/db_passwd.c @@ -35,9 +35,7 @@ #include "common.h" #include "log.h" -#include "myldap.h" #include "cfg.h" -#include "attmap.h" #include "common/dict.h" #include "compat/strndup.h" @@ -112,7 +110,7 @@ NSLCD_HANDLE_UID( } return NULL; ,/* write */ - write_passwd(fp, entry, calleruid) + write_passwd(fp, entry, calleruid); ,/* cleanup */ ) @@ -146,7 +144,7 @@ NSLCD_HANDLE_UID( } return NULL; ,/* write */ - write_passwd(fp, entry, calleruid) + write_passwd(fp, entry, calleruid); ,/* cleanup */ ) |