summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-07-13 13:14:39 +0200
committerStefan Metzmacher <metze@samba.org>2009-07-13 14:13:06 +0200
commit3ee3eb3acf5783894f358c415b342a88db248449 (patch)
tree5ece8f60e44c75b4955b5720106b817d5691d20e
parented99bf7317fccdb13e832e98f389486443f9fd48 (diff)
downloadsamba-3ee3eb3acf5783894f358c415b342a88db248449.tar.gz
samba-3ee3eb3acf5783894f358c415b342a88db248449.tar.bz2
samba-3ee3eb3acf5783894f358c415b342a88db248449.zip
s3:smbd: close_file() handles named pipes just fine, no reason to return NOT_SUPPORTED
metze
-rw-r--r--source3/smbd/smb2_close.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source3/smbd/smb2_close.c b/source3/smbd/smb2_close.c
index 6724e5cc15..a46b36e2bb 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;