]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Mon, 8 Sep 2008 23:47:10 +0000 (23:47 +0000)
committerAutomatic Updater <source@isc.org>
Mon, 8 Sep 2008 23:47:10 +0000 (23:47 +0000)
lib/isc/unix/include/isc/time.h
lib/isc/win32/include/isc/time.h
lib/isc/win32/time.c

index 6b41c52e43614505604dfe80f5d35216aac68b6b..c65ce9d2d326d1c77c3e755edc69e652fba1a911 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2008  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1998-2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: time.h,v 1.37 2008/09/08 06:51:10 marka Exp $ */
+/* $Id: time.h,v 1.38 2008/09/08 23:47:10 tbox Exp $ */
 
 #ifndef ISC_TIME_H
 #define ISC_TIME_H 1
@@ -29,7 +29,7 @@
  *** Intervals
  ***/
 
-/*! 
+/*!
  *  \brief
  * The contents of this structure are private, and MUST NOT be accessed
  * directly by callers.
index a8f9b4702e2c4ee6927c94d46e89864355a47394..af0cddb183e05ebf8a30dc9ac133bcfaa032bef0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006-2008  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1998-2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: time.h,v 1.32 2008/09/08 06:53:10 marka Exp $ */
+/* $Id: time.h,v 1.33 2008/09/08 23:47:10 tbox Exp $ */
 
 #ifndef ISC_TIME_H
 #define ISC_TIME_H 1
@@ -87,9 +87,9 @@ LIBISC_EXTERNAL_DATA extern isc_time_t *isc_time_epoch;
 void
 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
 /*%<
- * Set 't' to a value which represents the given number of seconds and 
+ * Set 't' to a value which represents the given number of seconds and
  * nanoseconds since 00:00:00 January 1, 1970, UTC.
- * 
+ *
  * Requires:
  *\li   't' is a valid pointer.
  *\li   nanoseconds < 1000000000.
index 10aab63b2943176ce9b20ac2cdcbd303274f7a59..aebf73d3121c85d86762d3f77f3d0e2a6101b4cd 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: time.c,v 1.47 2008/09/08 08:28:08 marka Exp $ */
+/* $Id: time.c,v 1.48 2008/09/08 23:47:10 tbox Exp $ */
 
 #include <config.h>
 
@@ -88,9 +88,9 @@ isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds) {
 
        REQUIRE(t != NULL);
        REQUIRE(nanoseconds < NS_PER_S);
-       
+
        SystemTimeToFileTime(&epoch, &temp);
+
        i1.LowPart = t->absolute.dwLowDateTime;
        i1.HighPart = t->absolute.dwHighDateTime;