1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

s3:smbd: close_file() handles named pipes just fine, no reason to return NOT_SUPPORTED

metze
This commit is contained in:
Stefan Metzmacher 2009-07-13 13:14:39 +02:00
parent ed99bf7317
commit 3ee3eb3acf

View File

@ -107,11 +107,6 @@ static NTSTATUS smbd_smb2_close(struct smbd_smb2_request *req,
return NT_STATUS_NO_MEMORY;
}
/* If it's an IPC, pass off the pipe handler. */
if (IS_IPC(conn)) {
return NT_STATUS_NOT_IMPLEMENTED;
}
fsp = file_fsp(smbreq, (uint16_t)in_file_id_volatile);
if (fsp == NULL) {
return NT_STATUS_FILE_CLOSED;