From 478d74fe1447c4588b14ef7040c8c13339d54026 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 15 Feb 2011 21:41:58 +0100 Subject: [PATCH] s3: Fix pdb_ads_pull_time --- source3/passdb/pdb_ads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/passdb/pdb_ads.c b/source3/passdb/pdb_ads.c index 1dcf5adc534..b8ed83abf70 100644 --- a/source3/passdb/pdb_ads.c +++ b/source3/passdb/pdb_ads.c @@ -67,7 +67,7 @@ static bool pdb_ads_pull_time(struct tldap_message *msg, const char *attr, if (!tldap_pull_uint64(msg, attr, &tmp)) { return false; } - *ptime = uint64s_nt_time_to_unix_abs(&tmp); + *ptime = nt_time_to_unix(tmp); return true; } -- 2.11.4.GIT