diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-05-04 16:44:08 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-08-14 11:58:13 +1000 |
commit | 272e49e85c47d88ef0a84bce88e6f8d984f2eae4 (patch) | |
tree | 2a4bc4aef47de12de144edc35a4d5c5c75304649 /source4/auth/ntlmssp | |
parent | 61930f50cbace4741500d8b53fc11a4ef3e0d4f8 (diff) | |
download | samba-272e49e85c47d88ef0a84bce88e6f8d984f2eae4.tar.gz samba-272e49e85c47d88ef0a84bce88e6f8d984f2eae4.tar.bz2 samba-272e49e85c47d88ef0a84bce88e6f8d984f2eae4.zip |
s4:auth Move struct auth_usersupplied_info to a common location
This also changes the calling convention slightly - we should always
allocate this with talloc_zero() to allow some elements to be
optional. Some elements may only make sense in Samba3, which I hope
will use this common structure.
Andrew Bartlett
Diffstat (limited to 'source4/auth/ntlmssp')
-rw-r--r-- | source4/auth/ntlmssp/ntlmssp_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/ntlmssp/ntlmssp_server.c b/source4/auth/ntlmssp/ntlmssp_server.c index 352f8754d6..6e3cf8a8ff 100644 --- a/source4/auth/ntlmssp/ntlmssp_server.c +++ b/source4/auth/ntlmssp/ntlmssp_server.c @@ -158,7 +158,7 @@ static NTSTATUS auth_ntlmssp_check_password(struct ntlmssp_state *ntlmssp_state, NTSTATUS nt_status; struct auth_usersupplied_info *user_info; - user_info = talloc(ntlmssp_state, struct auth_usersupplied_info); + user_info = talloc_zero(ntlmssp_state, struct auth_usersupplied_info); if (!user_info) { return NT_STATUS_NO_MEMORY; } |