From 3ee3eb3acf5783894f358c415b342a88db248449 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 13 Jul 2009 13:14:39 +0200 Subject: s3:smbd: close_file() handles named pipes just fine, no reason to return NOT_SUPPORTED metze --- source3/smbd/smb2_close.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source3/smbd/smb2_close.c b/source3/smbd/smb2_close.c index 6724e5cc158..a46b36e2bbb 100644 --- a/source3/smbd/smb2_close.c +++ b/source3/smbd/smb2_close.c @@ -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; -- cgit