r17717: this cried for bugs...and they happened...
authorStefan Metzmacher <metze@samba.org>
Tue, 22 Aug 2006 19:28:44 +0000 (19:28 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:16:31 +0000 (14:16 -0500)
we were passing a struct timeval reference as string,
and gcc gives a warning...use C99 style initialisation.

is there a special reason why the ACB_NORMAL is passed
when the force_password_change is selected?

metze
(This used to be commit 45061b1b7e76d56d557119eb2f7f6317e104d083)

source4/torture/libnet/userman.c

index 462b557735bf274e595e1fad5293c55d6f8f5be1..73aada2384e54b1c3eb6287a306e2e50b235fe58 100644 (file)
@@ -417,17 +417,37 @@ BOOL torture_usermod(struct torture_context *torture)
        struct timeval force  = { 33333, 55444 };
 
        struct usermod_change changes[] = {
-               { USERMOD_FIELD_ACCOUNT_NAME,   "changed", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0 },
-               { USERMOD_FIELD_FULL_NAME,      NULL, "Testing full account name", NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0 },
-               { USERMOD_FIELD_DESCRIPTION,    NULL, NULL, "Description of tested account", NULL, NULL, NULL, NULL, NULL, NULL, 0 },
-               { USERMOD_FIELD_COMMENT,        NULL, NULL, NULL, "Comment for the tested account", NULL, NULL, NULL, NULL, NULL, 0 },
-               { USERMOD_FIELD_LOGON_SCRIPT,   NULL, NULL, NULL, NULL, "test_logon.cmd", NULL, NULL, NULL, NULL, 0 },
-               { USERMOD_FIELD_PROFILE_PATH,   NULL, NULL, NULL, NULL, NULL, "\\\\TESTSRV\\profiles\\test", NULL, NULL, NULL, 0 },
-               { USERMOD_FIELD_ACCT_EXPIRY,    NULL, NULL, NULL, NULL, NULL, NULL, &expiry, NULL, NULL, 0 },
-               { USERMOD_FIELD_ALLOW_PASS_CHG, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &allow, NULL, 0 },
-               { USERMOD_FIELD_FORCE_PASS_CHG, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &force, ACB_NORMAL }
+       {
+               .fields                 = USERMOD_FIELD_ACCOUNT_NAME,
+               .account_name           = "changed",
+       },{
+               .fields                 = USERMOD_FIELD_FULL_NAME,
+               .full_name              = "Testing full account name",
+       },{
+               .fields                 = USERMOD_FIELD_DESCRIPTION,
+               .description            = "Description of tested account",
+       },{
+               .fields                 = USERMOD_FIELD_COMMENT,
+               .comment                = "Comment for the tested account",
+       },{
+               .fields                 = USERMOD_FIELD_LOGON_SCRIPT,
+               .logon_script           = "test_logon.cmd",
+       },{
+               .fields                 = USERMOD_FIELD_PROFILE_PATH,
+               .profile_path           = "\\\\TESTSRV\\profiles\\test",
+       },{
+               .fields                 = USERMOD_FIELD_ACCT_EXPIRY,
+               .acct_expiry            = &expiry,
+       },{
+               .fields                 = USERMOD_FIELD_ALLOW_PASS_CHG,
+               .allow_password_change  = &allow,
+       },{
+               .fields                 = USERMOD_FIELD_FORCE_PASS_CHG,
+               .force_password_change  = &force,
+               .acct_flags             = ACB_NORMAL,/* TODO: why is this needed here? */
+       }
        };
-       
+
        mem_ctx = talloc_init("test_userdel");
        binding = lp_parm_string(-1, "torture", "binding");