diff options
author | Volker Lendecke <vl@samba.org> | 2011-02-15 21:41:58 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-02-19 11:32:49 +0100 |
commit | 478d74fe1447c4588b14ef7040c8c13339d54026 (patch) | |
tree | 0d6855641c91d2dc5dc807c0e64630d70c78cff5 /source3 | |
parent | 464c69609aa7e582f484c1d357b7c6d3eb2bcbe3 (diff) | |
download | samba-478d74fe1447c4588b14ef7040c8c13339d54026.tar.gz samba-478d74fe1447c4588b14ef7040c8c13339d54026.tar.bz2 samba-478d74fe1447c4588b14ef7040c8c13339d54026.zip |
s3: Fix pdb_ads_pull_time
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_ads.c b/source3/passdb/pdb_ads.c index 1dcf5adc53..b8ed83abf7 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; } |