From 44689b1ee78e9197db5ef041dbc5e0e2aa8e61f7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 26 Oct 2011 08:54:11 +0200 Subject: s3:lib: make_unix_date3() is the same as pull_dos_date3() Except for a 'void *' vs. 'uint8_t *'. As a first step let make_unix_date() call pull_dos_date(), so that we he the logic only once. We can fix the callers later. metze --- source3/lib/time.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source3/lib/time.c b/source3/lib/time.c index e66941e27c..a83cb63e82 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -217,11 +217,7 @@ time_t make_unix_date2(const void *date_ptr, int zone_offset) time_t make_unix_date3(const void *date_ptr, int zone_offset) { - time_t t = (time_t)IVAL(date_ptr,0); - if (!null_time(t)) { - t += zone_offset; - } - return(t); + return pull_dos_date3(date_ptr, zone_offset); } time_t srv_make_unix_date(const void *date_ptr) -- cgit