diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-04-30 08:13:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:22 -0500 |
commit | 7de3892df1240bb54294120787a683e6b1c50314 (patch) | |
tree | c24ab97d4125b9e32784862233a92e9610d0daad | |
parent | d3481b160c1ae4e77b202739df562d0961f6e259 (diff) | |
download | samba-7de3892df1240bb54294120787a683e6b1c50314.tar.gz samba-7de3892df1240bb54294120787a683e6b1c50314.tar.bz2 samba-7de3892df1240bb54294120787a683e6b1c50314.zip |
r6523: Another string that isn't filled in. I wonder why this is, but for
now don't fail the test.
Andrew Bartlett
(This used to be commit 437aabf15ef7c5eead4bec45eb7e10a77f392b84)
-rw-r--r-- | source4/torture/rpc/samsync.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/torture/rpc/samsync.c b/source4/torture/rpc/samsync.c index 0168a90f79..d77c5a0d5e 100644 --- a/source4/torture/rpc/samsync.c +++ b/source4/torture/rpc/samsync.c @@ -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); |