]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Fri, 29 Aug 2008 23:45:33 +0000 (23:45 +0000)
committerAutomatic Updater <source@isc.org>
Fri, 29 Aug 2008 23:45:33 +0000 (23:45 +0000)
bin/nsupdate/Makefile.in
bin/nsupdate/nsupdate.docbook
lib/isc/win32/time.c

index e11deab3fb63adf5fe6301dc2c5ccae8bb27e5ce..a09760353e0c000c05fd78bb2cec1a09ff256cbc 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
 # Copyright (C) 2000-2003  Internet Software Consortium.
 #
 # Permission to use, copy, modify, and/or distribute this software for any
@@ -13,7 +13,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: Makefile.in,v 1.15.12.14 2008/08/29 03:25:53 marka Exp $
+# $Id: Makefile.in,v 1.15.12.15 2008/08/29 23:45:33 tbox Exp $
 
 srcdir =       @srcdir@
 VPATH =                @srcdir@
index 0186693cd30c49dd4229c959e572f3af940266f1..7e4ba9666a2b1dca13f637477ebebadad45c7dd4 100644 (file)
@@ -2,7 +2,7 @@
                "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
               [<!ENTITY mdash "&#8212;">]>
 <!--
- - Copyright (C) 2004-2007  Internet Systems Consortium, Inc. ("ISC")
+ - Copyright (C) 2004-2008  Internet Systems Consortium, Inc. ("ISC")
  - Copyright (C) 2000-2003  Internet Software Consortium.
  -
  - Permission to use, copy, modify, and/or distribute this software for any
@@ -18,7 +18,7 @@
  - PERFORMANCE OF THIS SOFTWARE.
 -->
 
-<!-- $Id: nsupdate.docbook,v 1.8.2.3.2.17 2008/08/29 03:25:53 marka Exp $ -->
+<!-- $Id: nsupdate.docbook,v 1.8.2.3.2.18 2008/08/29 23:45:33 tbox Exp $ -->
 
 <refentry>
 <refentryinfo>
@@ -36,6 +36,7 @@
       <year>2005</year>
       <year>2006</year>
       <year>2007</year>
+      <year>2008</year>
       <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
     </copyright>
     <copyright>
index 37cd20e5ea8f09a21948c83bf96b0d971127d0ab..cd9fc8b01e9da02c3f5f911a9113677955e6cb9a 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2008  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1998-2001, 2003  Internet Software Consortium.
  *
- * Permission to use, copy, modify, and distribute this software for any
+ * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
  * copyright notice and this permission notice appear in all copies.
  *
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: time.c,v 1.24.2.3.10.5 2008/08/29 04:05:30 marka Exp $ */
+/* $Id: time.c,v 1.24.2.3.10.6 2008/08/29 23:45:33 tbox Exp $ */
 
 #include <config.h>
 
@@ -235,9 +235,9 @@ isc_time_formattimestamp(const isc_time_t *t, char *buf, unsigned int len) {
        SYSTEMTIME st;
        char DateBuf[50];
        char TimeBuf[50];
-       
+
        static const char badtime[] = "99-Bad-9999 99:99:99.999";
-       
+
        REQUIRE(len > 0);
        if (FileTimeToLocalFileTime(&t->absolute, &localft) &&
            FileTimeToSystemTime(&localft, &st)) {
@@ -245,10 +245,10 @@ isc_time_formattimestamp(const isc_time_t *t, char *buf, unsigned int len) {
                              DateBuf, 50);
                GetTimeFormat(LOCALE_USER_DEFAULT, TIME_NOTIMEMARKER|
                              TIME_FORCE24HOURFORMAT, &st, NULL, TimeBuf, 50);
-               
+
                snprintf(buf, len, "%s %s.%03u", DateBuf, TimeBuf,
                         st.wMilliseconds);
-               
+
        } else
                snprintf(buf, len, badtime);
 }