diff options
author | Andreas Schneider <asn@samba.org> | 2010-07-29 13:16:09 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2010-08-16 12:48:27 +0200 |
commit | 66b6a8cf62c2fe9b1eafeb094916e6046f686359 (patch) | |
tree | f7ea7068a1a6d63ccefc804128d7cd640bf03ec4 /source3/web | |
parent | f03ac22770ef96d4b0fec81d94efefcddd8b310b (diff) | |
download | samba-66b6a8cf62c2fe9b1eafeb094916e6046f686359.tar.gz samba-66b6a8cf62c2fe9b1eafeb094916e6046f686359.tar.xz samba-66b6a8cf62c2fe9b1eafeb094916e6046f686359.zip |
s3-auth: Remove obsolete 'update encrypted' option.
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/cgi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/web/cgi.c b/source3/web/cgi.c index 0c1c80e724..3d7b32c293 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -373,9 +373,7 @@ static bool cgi_handle_authorization(char *line) * Validate the password they have given. */ - if NT_STATUS_IS_OK(pass_check(pass, user, user_pass, - NULL, False)) { - + if NT_STATUS_IS_OK(pass_check(pass, user, user_pass, false)) { if (pass) { /* * Password was ok. |