summaryrefslogtreecommitdiff
path: root/source3/torture/pdbtest.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-06-26 21:06:25 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-06-26 16:09:28 +0200
commit290e7de47a43d921bcd08a1f459a3d6b8d129c99 (patch)
tree8bb6b3385fae029811dd876eb2363d43a7913831 /source3/torture/pdbtest.c
parent43555d6439460d2bafa54300221856142c83aa3f (diff)
downloadsamba-290e7de47a43d921bcd08a1f459a3d6b8d129c99.tar.gz
samba-290e7de47a43d921bcd08a1f459a3d6b8d129c99.tar.bz2
samba-290e7de47a43d921bcd08a1f459a3d6b8d129c99.zip
s3-pdbtest: Fix pdbtest to compare the same fields
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Jun 26 16:09:28 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/torture/pdbtest.c')
-rw-r--r--source3/torture/pdbtest.c2
1 files changed, 1 insertions, 1 deletions
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;
}