summaryrefslogtreecommitdiff
path: root/source3/lib/time.c
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-11-21 12:29:51 +0100
committerJeremy Allison <jra@samba.org>2019-12-06 00:17:35 +0000
commit397ecd1feb3c46b861df7d37228b3033f27a06fa (patch)
tree1b041f17b64718b7cc92d35c93f155485dcf1135 /source3/lib/time.c
parenteefc8ee8e31c108114b6114df4ad006d33af1f4b (diff)
downloadsamba-397ecd1feb3c46b861df7d37228b3033f27a06fa.tar.gz
s3:lib: remove unused uint64s_nt_time_to_unix_abs()
Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/lib/time.c')
-rw-r--r--source3/lib/time.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/lib/time.c b/source3/lib/time.c
index 6b864253a91..94bf951f197 100644
--- a/source3/lib/time.c
+++ b/source3/lib/time.c
@@ -334,13 +334,6 @@ time_t nt_time_to_unix_abs(const NTTIME *nt)
return (time_t)d;
}
-time_t uint64s_nt_time_to_unix_abs(const uint64_t *src)
-{
- NTTIME nttime;
- nttime = *src;
- return nt_time_to_unix_abs(&nttime);
-}
-
/****************************************************************************
Convert a time_t to a NTTIME structure