mirror of
https://github.com/samba-team/samba.git
synced 2025-02-14 01:57:53 +03:00
r6523: Another string that isn't filled in. I wonder why this is, but for
now don't fail the test. Andrew Bartlett
This commit is contained in:
parent
99c9afe45a
commit
437aabf15e
@ -583,7 +583,10 @@ static BOOL samsync_handle_user(TALLOC_CTX *mem_ctx, struct samsync_state *samsy
|
||||
if (info3->base.account_name.string) {
|
||||
TEST_STRING_EQUAL(user->account_name, info3->base.account_name);
|
||||
}
|
||||
TEST_STRING_EQUAL(user->full_name, info3->base.full_name);
|
||||
/* this is NULL from Win2k3 */
|
||||
if (info3->base.full_name.string) {
|
||||
TEST_STRING_EQUAL(user->full_name, info3->base.full_name);
|
||||
}
|
||||
TEST_STRING_EQUAL(user->logon_script, info3->base.logon_script);
|
||||
TEST_STRING_EQUAL(user->profile_path, info3->base.profile_path);
|
||||
TEST_STRING_EQUAL(user->home_directory, info3->base.home_directory);
|
||||
|
Loading…
x
Reference in New Issue
Block a user