summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-03-05 22:50:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:10:58 -0500
commita52a6f1c425335a4154fcd0d8f1c45f6e387ce53 (patch)
tree7e1f273af10e4480dac7a955e716db6cf2857b28 /source4/lib
parent2f9e1650f9fe5a17a1f8d29f1ae4b04c33a91190 (diff)
downloadsamba-a52a6f1c425335a4154fcd0d8f1c45f6e387ce53.tar.gz
samba-a52a6f1c425335a4154fcd0d8f1c45f6e387ce53.tar.bz2
samba-a52a6f1c425335a4154fcd0d8f1c45f6e387ce53.zip
r5666: winxp will use a NTTIME of -1 to mean "don't change" in setfileinfo
basic_info. Add null_nttime() as the equivalent of the existing null_time() call for cheecking for valid NTTIME values (This used to be commit 439ce2efbf7d2ba9b17d6b4bfaf651e781140715)
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
********************************************************************/