From cd5d4d5c12395fc55cca5048ff368d52717ab9cc Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 14 Sep 1998 19:49:55 +0000 Subject: Fixed problems people were having with creating profile directories (NTTrans/Create with Security Descriptor for a directory). It turns out the CIFS spec is bogus (what a suprise) and the 'is a directory' flag is actually embedded in the create_options field. Jeremy. (This used to be commit 68750d8153f01bd0802bb86e93c3ca5d11acb199) --- source3/smbd/nttrans.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3/smbd/nttrans.c') diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 5052e6d52a..866d9938b1 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -407,6 +407,7 @@ int reply_ntcreate_and_X(connection_struct *conn, uint32 file_attributes = IVAL(inbuf,smb_ntcreate_FileAttributes); uint32 share_access = IVAL(inbuf,smb_ntcreate_ShareAccess); uint32 create_disposition = IVAL(inbuf,smb_ntcreate_CreateDisposition); + uint32 create_options = IVAL(inbuf,smb_ntcreate_CreateOptions); uint32 fname_len = MIN(((uint32)SVAL(inbuf,smb_ntcreate_NameLength)), ((uint32)sizeof(fname)-1)); int smb_ofun; @@ -521,7 +522,7 @@ int reply_ntcreate_and_X(connection_struct *conn, * If it's a request for a directory open, deal with it separately. */ - if(flags & OPEN_DIRECTORY) { + if(create_options & FILE_DIRECTORY_FILE) { oplock_request = 0; open_directory(fsp, conn, fname, smb_ofun, @@ -699,6 +700,7 @@ static int call_nt_transact_create(connection_struct *conn, uint32 file_attributes = IVAL(params,20); uint32 share_access = IVAL(params,24); uint32 create_disposition = IVAL(params,28); + uint32 create_options = IVAL(params,32); uint32 fname_len = MIN(((uint32)IVAL(params,44)), ((uint32)sizeof(fname)-1)); int smb_ofun; @@ -781,7 +783,7 @@ static int call_nt_transact_create(connection_struct *conn, * If it's a request for a directory open, deal with it separately. */ - if(flags & OPEN_DIRECTORY) { + if(create_options & FILE_DIRECTORY_FILE) { oplock_request = 0; -- cgit