bla...
authorStefan Metzmacher <metze@samba.org>
Thu, 2 Jul 2009 17:26:31 +0000 (19:26 +0200)
committerStefan Metzmacher <metze@samba.org>
Tue, 7 Jul 2009 15:22:07 +0000 (17:22 +0200)
source3/smbd/smb2_getinfo.c
source3/smbd/smb2_notify.c
source3/smbd/smb2_setinfo.c

index ba725fdec9fa268ba921ee94bd074270bf386a44..a2aa61cb14412e3e8143f62326b996540d300b06 100644 (file)
@@ -233,7 +233,7 @@ static struct tevent_req *smbd_smb2_getinfo_send(TALLOC_CTX *mem_ctx,
                return tevent_req_post(req, ev);
        }
 
-       tevent_req_nterror(req, NT_STATUS_NOT_IMPLEMENTED);
+       tevent_req_nterror(req, NT_STATUS_NOT_SUPPORTED);//IMPLEMENTED);
        return tevent_req_post(req, ev);
 }
 
index 7ab93ce574b368657f89043432cb19e8c7223d6f..792a168fcacaece7af8e373ca5d24c4c95c42366 100644 (file)
@@ -70,7 +70,7 @@ NTSTATUS smbd_smb2_request_process_notify(struct smbd_smb2_request *req)
         * 0x00010000 is what Windows 7 uses,
         * Windows 2008 uses 0x00080000
         */
-       if (in_output_buffer_length > 0x00010000) {
+       if (in_output_buffer_length > 0x00080000) {
                return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
        }
 
index 110ce6c64ad6a95187948fa23006f43c45a4d710..dd3d13323f40deda1efcf6e8d7a43bb2b4a73189 100644 (file)
@@ -200,7 +200,7 @@ static struct tevent_req *smbd_smb2_setinfo_send(TALLOC_CTX *mem_ctx,
                return tevent_req_post(req, ev);
        }
 
-       tevent_req_nterror(req, NT_STATUS_NOT_IMPLEMENTED);
+       tevent_req_done(req);//tevent_req_nterror(req, NT_STATUS_NOT_IMPLEMENTED);
        return tevent_req_post(req, ev);
 }