From e2c97aef510f4cdced2894ab2a5daf2b1d316e2a Mon Sep 17 00:00:00 2001 From: Automatic Updater Date: Mon, 8 Sep 2008 23:47:10 +0000 Subject: [PATCH] update copyright notice --- lib/isc/unix/include/isc/time.h | 6 +++--- lib/isc/win32/include/isc/time.h | 8 ++++---- lib/isc/win32/time.c | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/isc/unix/include/isc/time.h b/lib/isc/unix/include/isc/time.h index 6b41c52e43..c65ce9d2d3 100644 --- a/lib/isc/unix/include/isc/time.h +++ b/lib/isc/unix/include/isc/time.h @@ -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. diff --git a/lib/isc/win32/include/isc/time.h b/lib/isc/win32/include/isc/time.h index a8f9b4702e..af0cddb183 100644 --- a/lib/isc/win32/include/isc/time.h +++ b/lib/isc/win32/include/isc/time.h @@ -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. diff --git a/lib/isc/win32/time.c b/lib/isc/win32/time.c index 10aab63b29..aebf73d312 100644 --- a/lib/isc/win32/time.c +++ b/lib/isc/win32/time.c @@ -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 @@ -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;