Added init_nt_time function which initialises an NTTIME to -1.
authorMatthew Chapman <matty@samba.org>
Mon, 1 Feb 1999 02:36:24 +0000 (02:36 +0000)
committerMatthew Chapman <matty@samba.org>
Mon, 1 Feb 1999 02:36:24 +0000 (02:36 +0000)
source/include/proto.h
source/lib/time.c

index 9dbf57d17e701e5d33f71f6574e419d9eaa710af..c3843814f8e23839fb866f570007e0ff90fd3296 100644 (file)
@@ -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);
index 3cea1a3e14a08367f09f1ea314850a30e945a44c..85f6006389950f61c1112005290f7ccad510c50b 100644 (file)
@@ -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.