diff options
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/libnet/userman.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source4/torture/libnet/userman.c b/source4/torture/libnet/userman.c index ed07cf019a..1da57e2b35 100644 --- a/source4/torture/libnet/userman.c +++ b/source4/torture/libnet/userman.c @@ -414,8 +414,11 @@ BOOL torture_usermod(void) int i; struct usermod_change changes[] = { - { USERMOD_FIELD_ACCOUNT_NAME, "changed", NULL }, - { USERMOD_FIELD_FULL_NAME, NULL, "Testing full account name" } + { USERMOD_FIELD_ACCOUNT_NAME, "changed", NULL, NULL, NULL, NULL }, + { USERMOD_FIELD_FULL_NAME, NULL, "Testing full account name", NULL, NULL, NULL }, + { USERMOD_FIELD_DESCRIPTION, NULL, NULL, "Description of tested account", NULL, NULL }, + { USERMOD_FIELD_LOGON_SCRIPT, NULL, NULL, NULL, "test_logon.cmd", NULL }, + { USERMOD_FIELD_PROFILE_PATH, NULL, NULL, NULL, NULL, "\\\\TESTSRV\\profiles\\test" } }; mem_ctx = talloc_init("test_userdel"); |