diff options
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/lib/time.c | 16 |
2 files changed, 10 insertions, 7 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 9dbf57d17e..c3843814f8 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -341,6 +341,7 @@ struct tm *LocalTime(time_t *t); time_t nt_time_to_unix(NTTIME *nt); time_t interpret_long_date(char *p); void unix_to_nt_time(NTTIME *nt, time_t t); +void init_nt_time(NTTIME *nt); void put_long_date(char *p,time_t t); BOOL null_mtime(time_t mtime); void put_dos_date(char *buf,int offset,time_t unixdate); diff --git a/source3/lib/time.c b/source3/lib/time.c index 3cea1a3e14..85f6006389 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -298,13 +298,6 @@ void unix_to_nt_time(NTTIME *nt, time_t t) { double d; - if (t==0) - { - nt->low = 0; - nt->high = 0; - return; - } - /* this converts GMT to kludge-GMT */ t -= LocTimeDiff(t) - serverzone; @@ -316,6 +309,15 @@ void unix_to_nt_time(NTTIME *nt, time_t t) nt->low = (uint32)(d - ((double)nt->high)*4.0*(double)(1<<30)); } +/**************************************************************************** +initialise an NTTIME to -1, which means "unknown" or "don't expire" +****************************************************************************/ + +void init_nt_time(NTTIME *nt) +{ + nt->high = 0x7FFFFFFF; + nt->low = 0xFFFFFFFF; +} /**************************************************************************** take an NTTIME structure, containing high / low time. convert to unix time. |