1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

split the system password checking routines out of smbd/password.c and

into passdb/pass_check.c. This means SWAT no longer needs to link to
smbd/password.c
(This used to be commit 90d93889d7)
This commit is contained in:
Andrew Tridgell
1998-08-10 07:04:53 +00:00
parent bad66abfe7
commit fa88efbbac
7 changed files with 2076 additions and 1073 deletions

View File

@ -483,7 +483,7 @@ static int cgi_handle_authorization(char *line)
}
return password_ok(user, pass, strlen(pass), NULL);
return pass_check(user, pass, strlen(pass), NULL, NULL);
}