diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-05-26 12:48:58 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-06-03 17:54:37 +0200 |
commit | e16e7146b378e8e89bf25adc66d806bac7feaeb6 (patch) | |
tree | 3749acfaa0e0121050f6ff8cfebb3e60e37533ac /source3/include | |
parent | f20ded603b488b4eaca8b4bf1009e61ead851f85 (diff) | |
download | samba-e16e7146b378e8e89bf25adc66d806bac7feaeb6.tar.gz samba-e16e7146b378e8e89bf25adc66d806bac7feaeb6.tar.xz samba-e16e7146b378e8e89bf25adc66d806bac7feaeb6.zip |
s3:smbd: move negprot related globals to struct smbd_server_connection
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 81d254f1ffb..8726e979271 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -39,7 +39,8 @@ NTSTATUS auth_builtin_init(void); /* The following definitions come from auth/auth_compat.c */ NTSTATUS check_plaintext_password(const char *smb_name, DATA_BLOB plaintext_password, auth_serversupplied_info **server_info); -bool password_ok(const char *smb_name, DATA_BLOB password_blob); +bool password_ok(struct auth_context *actx, bool global_encrypted, + const char *smb_name, DATA_BLOB password_blob); /* The following definitions come from auth/auth_domain.c */ |