From 290e7de47a43d921bcd08a1f459a3d6b8d129c99 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 26 Jun 2012 21:06:25 +1000 Subject: s3-pdbtest: Fix pdbtest to compare the same fields Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Tue Jun 26 16:09:28 CEST 2012 on sn-devel-104 --- source3/torture/pdbtest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/torture/pdbtest.c b/source3/torture/pdbtest.c index e2551c0010..14e28e98b7 100644 --- a/source3/torture/pdbtest.c +++ b/source3/torture/pdbtest.c @@ -133,7 +133,7 @@ static bool samu_correct(struct samu *s1, struct samu *s2) } /* Check kickoff time */ - if (pdb_get_kickoff_time(s1) != pdb_get_logoff_time(s2)) { + if (pdb_get_kickoff_time(s1) != pdb_get_kickoff_time(s2)) { DEBUG(0, ("Kickoff time is not written correctly\n")); ret = False; } -- cgit