[SCM] Samba Shared Repository - branch master updated - c783d8a32e4d958aec6d943d0fa3de2e7d3a68c2

Jeremy Allison jra at samba.org
Fri Oct 17 04:04:49 GMT 2008


The branch, master has been updated
       via  c783d8a32e4d958aec6d943d0fa3de2e7d3a68c2 (commit)
      from  6f7760704734318acb643610d1af84ffeb8c55d5 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit c783d8a32e4d958aec6d943d0fa3de2e7d3a68c2
Author: Jeremy Allison <jra at samba.org>
Date:   Thu Oct 16 21:03:59 2008 -0700

    Cope with bad trans2mkdir requests from System i QNTC IBM SMB client.
    If total_data == 4 Windows doesn't care what values
    are placed in that field, it just ignores them.
    The System i QNTC IBM SMB client puts bad values here,
    so ignore them.
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source3/smbd/trans2.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index 00fee0d..1da45a8 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -7065,10 +7065,11 @@ static void call_trans2mkdir(connection_struct *conn, struct smb_request *req,
 			reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
 			return;
 		}
-	} else if (IVAL(pdata,0) != 4) {
-		reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
-		return;
 	}
+	/* If total_data == 4 Windows doesn't care what values
+	 * are placed in that field, it just ignores them.
+	 * The System i QNTC IBM SMB client puts bad values here,
+	 * so ignore them. */
 
 	status = create_directory(conn, req, directory);
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list