From c62615f2686a048bbb470801b146d589b17eece4 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 6 Dec 2004 11:10:15 +0000 Subject: r4075: implement RemoteTOD server function metze (This used to be commit 0c6d4246a45f649e7373606f12db74c2acd0f538) --- source4/librpc/idl/srvsvc.idl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4/librpc') diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl index ee5b369534..38ca38d7ab 100644 --- a/source4/librpc/idl/srvsvc.idl +++ b/source4/librpc/idl/srvsvc.idl @@ -1128,14 +1128,14 @@ /* srvsvc_NetRemoteTOD */ /**************************/ typedef struct { - uint32 elapsed; - uint32 msecs; + uint32 elapsed; /* time(NULL) */ + uint32 msecs; /* milliseconds till system reboot (uptime) */ uint32 hours; uint32 mins; uint32 secs; uint32 hunds; - uint32 timezone; - uint32 tinterval; + int32 timezone; /* in minutes */ + uint32 tinterval; /* clock tick interval in 0.0001 second units; 310 on windows */ uint32 day; uint32 month; uint32 year; -- cgit