diff options
author | Volker Lendecke <vl@samba.org> | 2014-06-18 12:21:06 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-06-30 22:28:14 +0200 |
commit | 379cbb6397ce6228cf02125f4f29b2438b384d1c (patch) | |
tree | 9ca15d4b93ca15a37d55dc8dd038bf6839725e49 /lib/util/time.c | |
parent | dcd6373613622852181a4dacdcf92ec2b9cb0112 (diff) | |
download | samba-379cbb6397ce6228cf02125f4f29b2438b384d1c.tar.gz samba-379cbb6397ce6228cf02125f4f29b2438b384d1c.tar.xz samba-379cbb6397ce6228cf02125f4f29b2438b384d1c.zip |
lib: Align nt_time_to_unix_timespec with unix_timespec_to_nt_time
Both take and return values now
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/util/time.c')
-rw-r--r-- | lib/util/time.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/util/time.c b/lib/util/time.c index 0c30264ffb..03345ec8d1 100644 --- a/lib/util/time.c +++ b/lib/util/time.c @@ -134,7 +134,7 @@ struct timespec convert_time_t_to_timespec(time_t t) **/ time_t nt_time_to_unix(NTTIME nt) { - return convert_timespec_to_time_t(nt_time_to_unix_timespec(&nt)); + return convert_timespec_to_time_t(nt_time_to_unix_timespec(nt)); } @@ -784,18 +784,18 @@ _PUBLIC_ int get_time_zone(time_t t) return tm_diff(&tm_utc,tm); } -struct timespec nt_time_to_unix_timespec(const NTTIME *nt) +struct timespec nt_time_to_unix_timespec(NTTIME nt) { int64_t d; struct timespec ret; - if (*nt == 0 || *nt == (int64_t)-1) { + if (nt == 0 || nt == (int64_t)-1) { ret.tv_sec = 0; ret.tv_nsec = 0; return ret; } - d = (int64_t)*nt; + d = (int64_t)nt; /* d is now in 100ns units, since jan 1st 1601". Save off the ns fraction. */ |