diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-11-10 16:16:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:08 -0500 |
commit | 92b9b83b70aef5ec77f3944f495205c107c6921a (patch) | |
tree | bfca54e3ca1c1471c9a099862a1b1c34ea1cb688 /source4/smb_server/reply.c | |
parent | 3b42d207efccbb31f94626f8fd98379e4a32cc35 (diff) | |
download | samba-92b9b83b70aef5ec77f3944f495205c107c6921a.tar.gz samba-92b9b83b70aef5ec77f3944f495205c107c6921a.tar.xz samba-92b9b83b70aef5ec77f3944f495205c107c6921a.zip |
r11650: - as every call that goes down to the ntvfs layer need a valid tcon and session
ntcancel also needs to have AS_USER
- move the SIGNING_NO_REPLY logic as global option, because this needs to be set
for the error replies too.
- as we currently don't know how to generate signatures for ntcancel replies
we just skip the sending of the reply
- w2k3 first checks the VUID and then the TID, so we do now
- ntcreateX also uses ERRbaduid when getting a wrong VUID
metze
(This used to be commit d677ebf43d0d7e679ff11862683c993d887d9441)
Diffstat (limited to 'source4/smb_server/reply.c')
-rw-r--r-- | source4/smb_server/reply.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source4/smb_server/reply.c b/source4/smb_server/reply.c index 85edbb530f..4526d6f7f3 100644 --- a/source4/smb_server/reply.c +++ b/source4/smb_server/reply.c @@ -2335,7 +2335,6 @@ void reply_ntcreate_and_X(struct smbsrv_request *req) void reply_ntcancel(struct smbsrv_request *req) { /* NOTE: this request does not generate a reply */ - req_signing_no_reply(req); ntvfs_cancel(req); req_destroy(req); } |