The Samba-Bugzilla – Attachment 10785 Details for
Bug 11114
Wrong return code on bad oplock break request
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
trivial patch to correct rc mapping - fixes three of the test cases (276, 743, 977)
oplock-rc-mapping-fix.patch (text/plain), 617 bytes, created by
Steve French
on 2015-02-25 06:23:53 UTC
(
hide
)
Description:
trivial patch to correct rc mapping - fixes three of the test cases (276, 743, 977)
Filename:
MIME Type:
Creator:
Steve French
Created:
2015-02-25 06:23:53 UTC
Size:
617 bytes
patch
obsolete
>diff --git a/source3/smbd/smb2_break.c b/source3/smbd/smb2_break.c >index 5eab0a1..b356a31 100644 >--- a/source3/smbd/smb2_break.c >+++ b/source3/smbd/smb2_break.c >@@ -74,6 +74,10 @@ NTSTATUS smbd_smb2_request_process_break(struct smbd_smb2_request *req) > > /* Are we awaiting a break message ? */ > if (in_fsp->oplock_timeout == NULL) { >+ DEBUG(10, ("Invalid request: no oplock. in_oplock_level 0x%x\n")); >+ if (in_oplock_level == SMB2_OPLOCK_LEVEL_LEASE) >+ return smbd_smb2_request_error( >+ req, NT_STATUS_INVALID_PARAMETER); > return smbd_smb2_request_error( > req, NT_STATUS_INVALID_OPLOCK_PROTOCOL); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 11114
:
10770
|
10771
|
10772
|
10773
|
10774
|
10775
|
10776
|
10777
|
10779
|
10780
|
10781
|
10782
|
10783
|
10784
|
10785
|
10786