summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-02-12 00:41:35 +0000
committerAndrew Tridgell <tridge@samba.org>2003-02-12 00:41:35 +0000
commit8c60a408e137a85d648422f5dbef4f53874236a3 (patch)
treeab3f1e755ed88bb33e9ef02dfbc061a82877d41e /source3/smbd
parent3b562efcbd00730c4999aec9950216ef73a34e2b (diff)
downloadsamba-8c60a408e137a85d648422f5dbef4f53874236a3.tar.gz
samba-8c60a408e137a85d648422f5dbef4f53874236a3.tar.bz2
samba-8c60a408e137a85d648422f5dbef4f53874236a3.zip
add a note about relative opens with blank paths - its a re-open!
(not implemented yet) (This used to be commit bceac9cdde04a57d661b6a7ece329fa6d5a169bd)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/nttrans.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c
index 29ebdce5a8..bfac4e82e3 100644
--- a/source3/smbd/nttrans.c
+++ b/source3/smbd/nttrans.c
@@ -629,6 +629,16 @@ create_options = 0x%x root_dir_fid = 0x%x\n", flags, desired_access, file_attrib
END_PROFILE(SMBntcreateX);
return ERROR_NT(NT_STATUS_OBJECT_PATH_NOT_FOUND);
}
+
+
+ /*
+ we need to handle the case when we get a
+ relative open relative to a file and the
+ pathname is blank - this is a reopen!
+ (hint from demyn plantenberg)
+ */
+
+
END_PROFILE(SMBntcreateX);
return(ERROR_DOS(ERRDOS,ERRbadfid));
}