svn commit: samba r6523 - in branches/SAMBA_4_0/source/torture/rpc: .

abartlet at samba.org abartlet at samba.org
Sat Apr 30 08:13:39 GMT 2005


Author: abartlet
Date: 2005-04-30 08:13:39 +0000 (Sat, 30 Apr 2005)
New Revision: 6523

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=6523

Log:
Another string that isn't filled in.  I wonder why this is, but for
now don't fail the test.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/torture/rpc/samsync.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/rpc/samsync.c
===================================================================
--- branches/SAMBA_4_0/source/torture/rpc/samsync.c	2005-04-30 08:09:47 UTC (rev 6522)
+++ branches/SAMBA_4_0/source/torture/rpc/samsync.c	2005-04-30 08:13:39 UTC (rev 6523)
@@ -583,7 +583,10 @@
 		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);



More information about the samba-cvs mailing list