diff options
author | Volker Lendecke <vl@samba.org> | 2012-06-11 14:01:08 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-12 10:48:15 +0200 |
commit | 2be5ace544a5ec280abb72504f3d4acf5240c425 (patch) | |
tree | 54bd165f2bf700cc4db7c003d422adeacfb38e79 /source3/lib | |
parent | 93e0844471f468f27c3c617b068b9d5aa26f4f1b (diff) | |
download | samba-2be5ace544a5ec280abb72504f3d4acf5240c425.tar.gz samba-2be5ace544a5ec280abb72504f3d4acf5240c425.tar.bz2 samba-2be5ace544a5ec280abb72504f3d4acf5240c425.zip |
s3: Add user_auth_info->use_pw_nt_hash
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_cmdline.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/lib/util_cmdline.c b/source3/lib/util_cmdline.c index 1d2c7256ea..440384608b 100644 --- a/source3/lib/util_cmdline.c +++ b/source3/lib/util_cmdline.c @@ -136,6 +136,18 @@ bool get_cmdline_auth_info_use_ccache(const struct user_auth_info *auth_info) return auth_info->use_ccache; } +void set_cmdline_auth_info_use_pw_nt_hash(struct user_auth_info *auth_info, + bool b) +{ + auth_info->use_pw_nt_hash = b; +} + +bool get_cmdline_auth_info_use_pw_nt_hash( + const struct user_auth_info *auth_info) +{ + return auth_info->use_pw_nt_hash; +} + void set_cmdline_auth_info_use_kerberos(struct user_auth_info *auth_info, bool b) { |