From ec3d1de61dd81f042b9ac65ff4f94db5b4ae643c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 22 Apr 2010 16:44:30 +1000 Subject: s4-torture: fixed a initialiser we were not initialising the whole array Pair-Programmed-With: Rusty Russell Pair-Programmed-With: Andrew Bartlett --- source4/torture/smb2/acls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/smb2') diff --git a/source4/torture/smb2/acls.c b/source4/torture/smb2/acls.c index 45107083c4..a857f4dcc5 100644 --- a/source4/torture/smb2/acls.c +++ b/source4/torture/smb2/acls.c @@ -1286,7 +1286,7 @@ static bool test_inheritance_flags(struct torture_context *tctx, uint32_t parent_get_ace_inherit; uint32_t child_get_sd_type; uint32_t child_get_ace_inherit; - } tflags[16] = {0}; /* 2^4 */ + } tflags[16] = {{0}}; /* 2^4 */ for (i = 0; i < 15; i++) { torture_comment(tctx, "i=%d:", i); -- cgit