]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
lib name and copyright notices
authorJelte Jansen <jelte@NLnetLabs.nl>
Mon, 2 Jun 2008 11:55:34 +0000 (11:55 +0000)
committerJelte Jansen <jelte@NLnetLabs.nl>
Mon, 2 Jun 2008 11:55:34 +0000 (11:55 +0000)
17 files changed:
buffer.c
compat/memmove.c
configure.ac
drill/configure.ac
drill/drill.c
examples/configure.ac
examples/ldns-notify.c
examples/nsd-test/configure.ac
ldns/buffer.h
ldns/dnssec.h
ldns/ldns.h
ldns/rbtree.h
ldns/tsig.h
ldns/update.h
lua/configure.ac
rbtree.c
update.c

index c62b913ee18454e37fb632b4e1b35be765da6224..c6259b4e20bd3765a30d24a908f198c77b882c9b 100644 (file)
--- a/buffer.c
+++ b/buffer.c
@@ -1,7 +1,7 @@
 /*
  * buffer.c -- generic memory buffer .
  *
- * Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
+ * Copyright (c) 2001-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
  *
index c1ae38d7878766367d410bf1e5c9af7a255867c9..e458092c33f73e71f694fa8eeb1b42b24d50ad05 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     memmove.c: memmove compat implementation.
  *
- *     Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
+ *     Copyright (c) 2001-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
 */
index 5b58a1923d6a704e9b10669c18dbaf3b8ed11ac6..16b6930a9abd125166dc7069cdbbb78b9fd5f540 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.56)
 
-AC_INIT(libdns, 1.3.0, libdns@nlnetlabs.nl, libdns)
+AC_INIT(ldns, 1.3.0, libdns@nlnetlabs.nl, libdns)
 AC_CONFIG_SRCDIR([packet.c])
 # needed to build correct soname
 AC_SUBST(LIBTOOL_VERSION_INFO, "1:3:0")
index 18d9d43fbc91999add024fb95b79797307b2f237..d736cdc96134ad4505bb6462f4b46adae0d0e937 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT(libdns, 1.3.0, libdns@nlnetlabs.nl,libdns)
+AC_INIT(ldns, 1.3.0, libdns@nlnetlabs.nl,libdns)
 AC_CONFIG_SRCDIR([drill.c])
 
 OURCPPFLAGS=''
index 376c4570cda29b0ed5b00e139925ee4332c80bc3..9869ea7271dcdb0a327142c9ebc75fcbdc7717d9 100644 (file)
@@ -76,7 +76,7 @@ version(FILE *stream, const char *progname)
 {
         fprintf(stream, "%s version %s (ldns version %s)\n", progname, DRILL_VERSION, ldns_version());
         fprintf(stream, "Written by NLnet Labs.\n");
-        fprintf(stream, "\nCopyright (c) 2004-2006 NLnet Labs.\n");
+        fprintf(stream, "\nCopyright (c) 2004-2008 NLnet Labs.\n");
         fprintf(stream, "Licensed under the revised BSD license.\n");
         fprintf(stream, "There is NO warranty; not even for MERCHANTABILITY or FITNESS\n");
         fprintf(stream, "FOR A PARTICULAR PURPOSE.\n");
index 3cc1485d7dcb02950fc53fa9d9d47df547da14d5..92075a58112d4d04f5b3647d5bcb02d3d73646f9 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT(libdns, 1.3.0, libdns@nlnetlabs.nl,libdns)
+AC_INIT(ldns, 1.3.0, libdns@nlnetlabs.nl,libdns)
 AC_CONFIG_SRCDIR([ldns-read-zone.c])
 
 OURCPPFLAGS=''
index 470f1c85a614052e5ab99bf1058fc54fbc23a28e..21457ce37fca1763e7900af0ba12f31e28e7a5b8 100644 (file)
@@ -45,7 +45,7 @@ version(void)
         fprintf(stderr, "%s version %s\n", PACKAGE_NAME, PACKAGE_VERSION);
         fprintf(stderr, "Written by NLnet Labs.\n\n");
         fprintf(stderr,
-                "Copyright (C) 2001-2005 NLnet Labs.  This is free software.\n"
+                "Copyright (C) 2001-2008 NLnet Labs.  This is free software.\n"
                 "There is NO warranty; not even for MERCHANTABILITY or FITNESS\n"
                 "FOR A PARTICULAR PURPOSE.\n");
         exit(0);
index fed6ca595f1b3a048f2bffac6c4be6bd9a474b8f..e089ae3b973cced78488c8cffe5540d6544d73fa 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT(libdns, 1.3.0, libdns@nlnetlabs.nl,libdns)
+AC_INIT(ldns, 1.3.0, libdns@nlnetlabs.nl,libdns)
 AC_CONFIG_SRCDIR([nsd-ldnsd.c])
 
 OURCPPFLAGS='-D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ -D__BSD_VISIBLE'
index f2edb842df2eab05ce09932fade1953836655c07..acae1290569aea060903d4606e326bf2e3a3898b 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * buffer.h -- generic memory buffer.
  *
- * Copyright (c) 2005-2006, NLnet Labs. All rights reserved.
+ * Copyright (c) 2005-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
  *
index 2d4d81762638b6f99ed8ed5595d1c8f597aed272..c984bb7de965f349e9b02b80822eb16657b04210 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * dnssec.h -- defines for the Domain Name System (SEC) (DNSSEC)
  *
- * Copyright (c) 2005-2006, NLnet Labs. All rights reserved.
+ * Copyright (c) 2005-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
  *
index fe9b7e9737f574eb968f2767f9a39b91c98317ef..4d668979ef19116673404be922c1aa1705afdb7d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * dns.h -- defines for the Domain Name System
  *
- * Copyright (c) 2005-2006, NLnet Labs. All rights reserved.
+ * Copyright (c) 2005-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
  *
index 2509d7bb37e08dfacc5e023f9e5fff0fdfe578c6..14c3a721223869348ce95419789bf398cda54501 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * rbtree.h -- generic red-black tree
  *
- * Copyright (c) 2001-2007, NLnet Labs. All rights reserved.
+ * Copyright (c) 2001-2008, NLnet Labs. All rights reserved.
  * 
  * This software is open source.
  * 
index b1ea35bf15952f71b69b1dc3b338b9f59a8e7b5a..26e148a4c559246b15aef6a1ac721c5e134d2889 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * tsig.h -- defines for TSIG [RFC2845]
  *
- * Copyright (c) 2005-2006, NLnet Labs. All rights reserved.
+ * Copyright (c) 2005-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
  */
index a4c12ea4e7d31f288e0eb2a5889af244ee7f8186..43f80e691a7ca67969bca5c86286f654bd85fd31 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Functions for RFC 2136 Dynamic Update
  *
- * Copyright (c) 2005-2006, NLnet Labs. All rights reserved.
+ * Copyright (c) 2005-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
  */
index dc00643dc2dd0994e8559d5c8ba15221b09657a2..b18b2ad1011af6510efdd24a077206fc98f72687 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT(libdns-tests, 1.0.0, ldns@nlnetlabs.nl, ldns-tests-1.0)
+AC_INIT(ldns-tests, 1.3.0, ldns@nlnetlabs.nl, ldns-tests-1.0)
 AC_CONFIG_SRCDIR([../ldns/config.h])
 
 AC_AIX
index 00daa1dbb71481d3c7d3894c0f27383c188eacb8..c52c0db270444ade7ecdd21ba874ed7229a27556 100644 (file)
--- a/rbtree.c
+++ b/rbtree.c
@@ -3,7 +3,7 @@
  *
  * Taken from Unbound, modified for ldns
  *
- * Copyright (c) 2001-2007, NLnet Labs. All rights reserved.
+ * Copyright (c) 2001-2008, NLnet Labs. All rights reserved.
  * 
  * This software is open source.
  * 
index 2d33370ae74db6bb4529563db3ba80dacc93d7ed..c6781a96c1ec639282ea01c85b1b6fca840fc3cd 100644 (file)
--- a/update.c
+++ b/update.c
@@ -2,7 +2,7 @@
  *
  * Functions for RFC 2136 Dynamic Update
  *
- * Copyright (c) 2005-2006, NLnet Labs. All rights reserved.
+ * Copyright (c) 2005-2008, NLnet Labs. All rights reserved.
  *
  * See LICENSE for the license.
  */