diff options
author | Andrew Bartlett <abartlet@samba.org> | 2014-01-22 15:54:15 +1300 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2014-04-15 10:13:12 +0200 |
commit | 6e8eb605454d663643738bc3bf797035022e3a20 (patch) | |
tree | 73524e60c20b6b050e2f32cce49a8c9c13438f2f /source4 | |
parent | e731655f09d7b4bb87cac33738a5f286d453610e (diff) | |
download | samba-6e8eb605454d663643738bc3bf797035022e3a20.tar.gz |
auth: Remove linux_bigcrypt support from pass_check.c
This is dead code, and probably has been for quite some time.
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4')
-rw-r--r-- | source4/auth/ntlm/auth_unix.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source4/auth/ntlm/auth_unix.c b/source4/auth/ntlm/auth_unix.c index 169e9abf8b1..d1f62858eae 100644 --- a/source4/auth/ntlm/auth_unix.c +++ b/source4/auth/ntlm/auth_unix.c @@ -542,14 +542,6 @@ static NTSTATUS password_check(const char *username, const char *password, #endif /* ULTRIX_AUTH */ -#ifdef LINUX_BIGCRYPT - ret = (linux_bigcrypt(password, salt, crypted)); - if (ret) { - return NT_STATUS_OK; - } else { - return NT_STATUS_WRONG_PASSWORD; - } -#endif /* LINUX_BIGCRYPT */ #if defined(HAVE_BIGCRYPT) && defined(HAVE_CRYPT) && defined(USE_BOTH_CRYPT_CALLS) |