diff options
Diffstat (limited to 'source4/auth/auth_util.c')
-rw-r--r-- | source4/auth/auth_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 929390ad78..bdbc818822 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -222,10 +222,10 @@ BOOL make_user_info_netlogon_interactive(auth_usersupplied_info **user_info, #endif if (lm_interactive_pwd) - SamOEMhash((uint8_t *)lm_pwd, key, sizeof(lm_pwd)); + arcfour_crypt((uint8_t *)lm_pwd, key, sizeof(lm_pwd)); if (nt_interactive_pwd) - SamOEMhash((uint8_t *)nt_pwd, key, sizeof(nt_pwd)); + arcfour_crypt((uint8_t *)nt_pwd, key, sizeof(nt_pwd)); #ifdef DEBUG_PASSWORD DEBUG(100,("decrypt of lm owf password:")); |