diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-12-14 20:32:47 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-12-22 17:29:15 +1100 |
commit | 0809696dbf3f551c0fbd37154025053b55fa07ee (patch) | |
tree | 59a0f30cf570fd398c2d22931b7fe374f4ee2585 /source4/smb_server/smb | |
parent | 383369e8f204f5a02b6c056f276f14f2f9518044 (diff) | |
download | samba-0809696dbf3f551c0fbd37154025053b55fa07ee.tar.gz samba-0809696dbf3f551c0fbd37154025053b55fa07ee.tar.bz2 samba-0809696dbf3f551c0fbd37154025053b55fa07ee.zip |
s4:auth Change 'get_challenge' API to be more like Samba3
It is just easier to fill in the known to be 8 byte challenge than
stuff about with allocated pointers.
Andrew Bartlett
Diffstat (limited to 'source4/smb_server/smb')
-rw-r--r-- | source4/smb_server/smb/negprot.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source4/smb_server/smb/negprot.c b/source4/smb_server/smb/negprot.c index ab763e39c3..fe6cd68f6e 100644 --- a/source4/smb_server/smb/negprot.c +++ b/source4/smb_server/smb/negprot.c @@ -33,7 +33,6 @@ static NTSTATUS get_challenge(struct smbsrv_connection *smb_conn, uint8_t buff[8]) { NTSTATUS nt_status; - const uint8_t *challenge; /* muliple negprots are not premitted */ if (smb_conn->negotiate.auth_context) { @@ -53,14 +52,12 @@ static NTSTATUS get_challenge(struct smbsrv_connection *smb_conn, uint8_t buff[8 return nt_status; } - nt_status = auth_get_challenge(smb_conn->negotiate.auth_context, &challenge); + nt_status = auth_get_challenge(smb_conn->negotiate.auth_context, buff); if (!NT_STATUS_IS_OK(nt_status)) { DEBUG(0, ("auth_get_challenge() returned %s", nt_errstr(nt_status))); return nt_status; } - memcpy(buff, challenge, 8); - return NT_STATUS_OK; } |