summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/time.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/lib/time.c b/source4/lib/time.c
index 67397e953a..7b371f58dd 100644
--- a/source4/lib/time.c
+++ b/source4/lib/time.c
@@ -112,6 +112,15 @@ BOOL null_time(time_t t)
t == (time_t)-1;
}
+
+/****************************************************************************
+check if it's a null NTTIME
+****************************************************************************/
+BOOL null_nttime(NTTIME t)
+{
+ return t == 0 || t == (NTTIME)-1;
+}
+
/*******************************************************************
create a 16 bit dos packed date
********************************************************************/