diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-05-25 19:58:00 +1000 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-05-31 15:10:48 +0200 |
commit | 9a76932ccfe680b9bf224e0dcac7f9cdb7ce9f4e (patch) | |
tree | d56e36ff2b6dd2b6b7719a6f2ff738bde550dbab /source3 | |
parent | 723ea68d3b69a9fc31dc02256c4fc323dc9278ce (diff) | |
download | samba-9a76932ccfe680b9bf224e0dcac7f9cdb7ce9f4e.tar.gz samba-9a76932ccfe680b9bf224e0dcac7f9cdb7ce9f4e.tar.bz2 samba-9a76932ccfe680b9bf224e0dcac7f9cdb7ce9f4e.zip |
s3:ntlmssp Add two unused variables to match the Samba4 ntlmssp.h
Andrew Bartlett
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/ntlmssp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/ntlmssp.h b/source3/include/ntlmssp.h index 384eb22b20..97192b8c6f 100644 --- a/source3/include/ntlmssp.h +++ b/source3/include/ntlmssp.h @@ -4,6 +4,7 @@ Copyright (C) Andrew Tridgell 1992-1997 Copyright (C) Luke Kenneth Casson Leighton 1996-1997 Copyright (C) Paul Ashton 1997 + Copyright (C) Andrew Bartlett 2010 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -54,6 +55,9 @@ struct ntlmssp_state bool unicode; bool use_ntlmv2; bool use_ccache; + bool use_nt_response; /* Set to 'False' to debug what happens when the NT response is omited */ + bool allow_lm_key; /* The LM_KEY code is not very secure... */ + const char *user; const char *domain; uint8_t *nt_hash; |