[SCM] Samba Shared Repository - branch v4-0-test updated - release-4-0-0alpha3-1863-g8d2e20f

Andrew Tridgell tridge at samba.org
Tue May 27 10:16:19 GMT 2008


The branch, v4-0-test has been updated
       via  8d2e20fcb984c122fbf98cfe712b3145941d881d (commit)
      from  791ce0fe39a9d9e0d40b9850ff6f0cc9077fe2f1 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v4-0-test


- Log -----------------------------------------------------------------
commit 8d2e20fcb984c122fbf98cfe712b3145941d881d
Author: Andrew Tridgell <tridge at samba.org>
Date:   Tue May 27 20:16:00 2008 +1000

    fixed uninitialised variable

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

Summary of changes:
 source/torture/smb2/create.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/torture/smb2/create.c b/source/torture/smb2/create.c
index 87a53ed..9c9e7e2 100644
--- a/source/torture/smb2/create.c
+++ b/source/torture/smb2/create.c
@@ -129,7 +129,7 @@ bool torture_smb2_create_gentest(struct torture_context *torture, struct smb2_tr
 	io.in.create_disposition = NTCREATEX_DISP_OPEN_IF;
 	io.in.desired_access = SEC_FLAG_MAXIMUM_ALLOWED;
 	io.in.file_attributes = 0;
-	access_mask = 0;
+	file_attributes = 0;
 	denied_mask = 0;
 	{
 		int i;
@@ -149,7 +149,7 @@ bool torture_smb2_create_gentest(struct torture_context *torture, struct smb2_tr
 		}
 	}
 
-	CHECK_EQUAL(file_attributes, 0xffffbd48);
+	CHECK_EQUAL(file_attributes, 0xffff8048);
 	CHECK_EQUAL(denied_mask, 0x4000);
 
 	smb2_deltree(tree, FNAME);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list