From: Volker Lendecke Date: Tue, 15 Feb 2011 20:41:58 +0000 (+0100) Subject: s3: Fix pdb_ads_pull_time X-Git-Tag: tevent-0.9.11~495 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=478d74fe1447c4588b14ef7040c8c13339d54026;p=thirdparty%2Fsamba.git s3: Fix pdb_ads_pull_time --- 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; }