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

index 29c79c4e345970f03985392b21af9f875d94b307..713ec30b60f714031377edab6de211545f9efc48 100644 (file)
@@ -1,7 +1,7 @@
-# Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
+# Copyright (C) 2004, 2008  Internet Systems Consortium, Inc. ("ISC")
 # Copyright (C) 2000-2002  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.
 #
@@ -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.22.18.2 2008/08/29 03:22:04 marka Exp $
+# $Id: Makefile.in,v 1.22.18.3 2008/08/29 23:46:16 tbox Exp $
 
 srcdir =       @srcdir@
 VPATH =                @srcdir@
index 55e8013a455599392beeab9c08e839e0e68ba25f..43fe69ad485302664f4beaffff88f2eda4cb8679 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.18.18.11 2008/08/29 03:22:04 marka Exp $ -->
+<!-- $Id: nsupdate.docbook,v 1.18.18.12 2008/08/29 23:46:16 tbox Exp $ -->
 <refentry>
   <refentryinfo>
     <date>Jun 30, 2000</date>
@@ -39,6 +39,7 @@
       <year>2005</year>
       <year>2006</year>
       <year>2007</year>
+      <year>2008</year>
       <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
     </copyright>
     <copyright>
index 671d06348d6013f715b024443db3a5bc423b2651..35796f8438f7e36e72f1650731631a6f088d735b 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.38.18.1 2008/08/29 04:05:45 marka Exp $ */
+/* $Id: time.c,v 1.38.18.2 2008/08/29 23:46:17 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);
 }