summaryrefslogtreecommitdiffstats
path: root/source4/auth
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2014-01-22 15:54:15 +1300
committerAndreas Schneider <asn@cryptomilk.org>2014-04-15 10:13:12 +0200
commit6e8eb605454d663643738bc3bf797035022e3a20 (patch)
tree73524e60c20b6b050e2f32cce49a8c9c13438f2f /source4/auth
parente731655f09d7b4bb87cac33738a5f286d453610e (diff)
downloadsamba-6e8eb605454d663643738bc3bf797035022e3a20.tar.gz
samba-6e8eb605454d663643738bc3bf797035022e3a20.tar.xz
samba-6e8eb605454d663643738bc3bf797035022e3a20.zip
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/auth')
-rw-r--r--source4/auth/ntlm/auth_unix.c8
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)