From: Stefan Metzmacher Date: Sat, 6 Jun 2009 08:36:42 +0000 (+0200) Subject: s3:smbd: FSCTL_PIPE_TRANSCEIVE on a none IPC$ share should give NOT_SUPPORTED X-Git-Tag: tdb-1.1.5~241 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e261d0e9c89ff11dc37b2bfd70c74c3a06486bd;p=thirdparty%2Fsamba.git s3:smbd: FSCTL_PIPE_TRANSCEIVE on a none IPC$ share should give NOT_SUPPORTED metze --- diff --git a/source3/smbd/smb2_ioctl.c b/source3/smbd/smb2_ioctl.c index 493ae551b57..9ff6c8ea979 100644 --- a/source3/smbd/smb2_ioctl.c +++ b/source3/smbd/smb2_ioctl.c @@ -336,7 +336,7 @@ static struct tevent_req *smbd_smb2_ioctl_send(TALLOC_CTX *mem_ctx, case 0x0011C017: /* FSCTL_PIPE_TRANSCEIVE */ if (!IS_IPC(smbreq->conn)) { - tevent_req_nterror(req, NT_STATUS_INVALID_DEVICE_REQUEST); + tevent_req_nterror(req, NT_STATUS_NOT_SUPPORTED); return tevent_req_post(req, ev); }