From 8d5e7367b196cab1f06b3091f3431058777868d4 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 24 Aug 2006 20:27:42 +0000 Subject: r17806: Make NTTIME a UINT64_S rather than a separate structure consisting of two uint32s. (This used to be commit 3556a9c26cf7728e2435bb28e69958751e883ab9) --- source3/include/smb.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'source3/include/smb.h') diff --git a/source3/include/smb.h b/source3/include/smb.h index 9aa8be437c..c5115a551f 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -213,11 +213,14 @@ typedef smb_ucs2_t wfstring[FSTRING_LEN]; #define PI_NTSVCS 14 #define PI_MAX_PIPES 15 -/* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */ -typedef struct nttime_info { +typedef struct uint64_s +{ uint32 low; uint32 high; -} NTTIME; +} UINT64_S; + +/* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */ +typedef UINT64_S NTTIME; /* Allowable account control bits */ -- cgit