]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorTinderbox User <tbox@isc.org>
Thu, 10 Apr 2014 23:46:10 +0000 (23:46 +0000)
committerTinderbox User <tbox@isc.org>
Thu, 10 Apr 2014 23:46:10 +0000 (23:46 +0000)
bin/dnssec/dnssec-importkey.8
bin/dnssec/dnssec-importkey.html
contrib/perftcpdns/Makefile.in
contrib/perftcpdns/configure.in
contrib/perftcpdns/perftcpdns.c

index 7b51956d71722c9015bc39ffcbab80b7182feb9a..bc33ce6c3dbdb3141cdaa55b6773dfcecf2be52a 100644 (file)
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
+.\" Copyright (C) 2013, 2014  Internet Systems Consortium, Inc. ("ISC")
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
index 3b1c922acb720b4b33cf48efd431f691828356d8..024f05115b1dbf1fb5826c9a403fa13c02e25bee 100644 (file)
@@ -1,5 +1,5 @@
 <!--
- - Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
+ - Copyright (C) 2013, 2014  Internet Systems Consortium, Inc. ("ISC")
  -
  - Permission to use, copy, modify, and/or distribute this software for any
  - purpose with or without fee is hereby granted, provided that the above
index 96b8019a7e4ed87010f5839048dfbd6985436ea3..9c5bb126b2557284d53189bbc4add3ca40c382ba 100644 (file)
@@ -1,4 +1,16 @@
 # Copyright (C) 2014  Internet Systems Consortium, Inc. ("ISC")
+#
+# 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.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
+# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
+# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
 
 CC = @CC@
 LIBOBJS = @LIBOBJS@
index 62ee7a736c3bdd5eca6770500fa87724e54b6837..4da245ecd54e9a311b5b65b3433f6f107b78aee8 100644 (file)
@@ -1,18 +1,16 @@
 # Copyright (C) 2014  Internet Systems Consortium, Inc. ("ISC")
 #
-# 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.
 #
-# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
-# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
-# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
-# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
-# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
-# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
-# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
+# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
+# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
+# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
+# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+# PERFORMANCE OF THIS SOFTWARE.
 
 AC_INIT(perftcpdns.c)
 
index b5730dbf22e0ce2fabbdeb64847099c440640854..f545b5c6686286fc9187849f84ce0e8286de897d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013, 2014  Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -701,7 +701,7 @@ sendquery(struct exchange *x)
        if ((size_t) ret == length_query + off)
                return 0;
        return -errno;
-}      
+}
 
 /*
  * poll ready and send
@@ -1562,7 +1562,7 @@ getserveraddr(const int flags)
                hints.ai_protocol = IPPROTO_TCP;
        }
        hints.ai_flags = AI_ADDRCONFIG | flags;
-       
+
        ret = getaddrinfo(servername, NULL, &hints, &res);
        if (ret != 0) {
                fprintf(stderr, "bad server=%s: %s\n",
@@ -1604,7 +1604,7 @@ getlocaladdr(void)
                hints.ai_protocol = IPPROTO_TCP;
        }
        hints.ai_flags = AI_ADDRCONFIG;
-       
+
        ret = getaddrinfo(localname, NULL, &hints, &res);
        if (ret != 0) {
                fprintf(stderr,
@@ -2438,7 +2438,7 @@ main(const int argc, char * const argv[])
        /* round-time trip statistics */
        if (xrcount != 0) {
                double avg, stddev;
-               
+
                avg = dsum / xrcount;
                stddev = sqrt(dsumsq / xrcount - avg * avg);
                printf("RTT: min/avg/max/stddev:  %.3f/%.3f/%.3f/%.3f ms\n",