1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s3:smb2_sesssetup: make use of nt_status_squash() in smbd_smb2_session_setup_recv()

metze
This commit is contained in:
Stefan Metzmacher 2012-05-16 15:32:08 +02:00
parent 632af66453
commit ff700acdd0

View File

@ -484,7 +484,7 @@ static NTSTATUS smbd_smb2_session_setup_recv(struct tevent_req *req,
if (tevent_req_is_nterror(req, &status)) {
if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
tevent_req_received(req);
return status;
return nt_status_squash(status);
}
} else {
status = NT_STATUS_OK;