]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Tue, 11 Oct 2011 23:46:45 +0000 (23:46 +0000)
committerAutomatic Updater <source@isc.org>
Tue, 11 Oct 2011 23:46:45 +0000 (23:46 +0000)
bin/named/client.c
bin/named/include/named/client.h
bin/named/query.c
contrib/sdb/dir/dirdb.c
contrib/sdb/pgsql/pgsqldb.c
contrib/sdb/tcl/tcldb.c
contrib/sdb/time/timedb.c
lib/dns/include/dns/clientinfo.h
lib/dns/include/dns/dlz_dlopen.h
lib/dns/include/dns/sdb.h

index ae2fe3f2bbb14980c4869923be5d4f8f97806cf8..e8c1da679e28d53cdd679e4c819b86c9fffa554b 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: client.c,v 1.279 2011/10/11 00:09:01 each Exp $ */
+/* $Id: client.c,v 1.280 2011/10/11 23:46:44 tbox Exp $ */
 
 #include <config.h>
 
@@ -2856,7 +2856,7 @@ ns_client_qnamereplace(ns_client_t *client, dns_name_t *name) {
 isc_result_t
 ns_client_sourceip(dns_clientinfo_t *ci, isc_sockaddr_t **addrp) {
        ns_client_t *client = (ns_client_t *) ci->data;
-               
+
        REQUIRE(NS_CLIENT_VALID(client));
        REQUIRE(addrp != NULL);
 
index 4f689d56dfd20b196134021aa8ac8853a53b93c2..3481256da436b56bd7a1655a06406492a5e4c6e9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2009  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2009, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: client.h,v 1.93 2011/10/11 00:09:01 each Exp $ */
+/* $Id: client.h,v 1.94 2011/10/11 23:46:44 tbox Exp $ */
 
 #ifndef NAMED_CLIENT_H
 #define NAMED_CLIENT_H 1
index b78b9e8d6890d33c6df2685303911cf6b7f1b765..b52f9cb271e0b3818c4c49bc2b0697eccbcb0ec8 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: query.c,v 1.370 2011/10/11 00:09:01 each Exp $ */
+/* $Id: query.c,v 1.371 2011/10/11 23:46:44 tbox Exp $ */
 
 /*! \file */
 
@@ -1278,7 +1278,7 @@ query_addadditional(void *arg, dns_name_t *name, dns_rdatatype_t qtype) {
        }
        result = dns_db_findext(db, name, version, type,
                                client->query.dboptions |
-                                DNS_DBFIND_GLUEOK | DNS_DBFIND_ADDITIONALOK,
+                                DNS_DBFIND_GLUEOK | DNS_DBFIND_ADDITIONALOK,
                                client->now, &node, fname, &cm, &ci,
                                rdataset, sigrdataset);
        if (result == DNS_R_GLUE &&
@@ -1771,7 +1771,7 @@ query_addadditional2(void *arg, dns_name_t *name, dns_rdatatype_t qtype) {
 
        result = dns_db_findext(db, name, version, type,
                                client->query.dboptions |
-                                DNS_DBFIND_GLUEOK | DNS_DBFIND_ADDITIONALOK,
+                                DNS_DBFIND_GLUEOK | DNS_DBFIND_ADDITIONALOK,
                                client->now, &node, fname, &cm, &ci,
                                NULL, NULL);
        if (result == ISC_R_SUCCESS)
index 70e18bd3a8e4e630d89de5cb1ec4742aba3c3324..efaf892c2721d946b715086d350f00259b7ab553 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 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: dirdb.c,v 1.13 2011/10/11 00:09:02 each Exp $ */
+/* $Id: dirdb.c,v 1.14 2011/10/11 23:46:45 tbox Exp $ */
 
 /*
  * A simple database driver that returns basic information about
@@ -91,7 +91,7 @@ dirdb_lookup(const char *zone, const char *name, void *dbdata,
                snprintf(filename, sizeof(filename), "%s/%s",
                         (char *)dbdata, name);
        CHECKN(lstat(filename, &statbuf));
-       
+
        if (S_ISDIR(statbuf.st_mode))
                CHECK(dns_sdb_putrr(lookup, "txt", 3600, "dir"));
        else if (S_ISCHR(statbuf.st_mode) || S_ISBLK(statbuf.st_mode)) {
index bf092824876de2a539fd8d85f0f35d67fa483565..fa3d453d8136c6060a7d8a69c3c7b6637407b66e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 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: pgsqldb.c,v 1.16 2011/10/11 00:09:02 each Exp $ */
+/* $Id: pgsqldb.c,v 1.17 2011/10/11 23:46:45 tbox Exp $ */
 
 #include <config.h>
 
@@ -43,7 +43,7 @@
  * connection to the database per zone, which is inefficient.  It also may
  * not handle quoting correctly.
  *
- * The table must contain the fields "name", "rdtype", and "rdata", and 
+ * The table must contain the fields "name", "rdtype", and "rdata", and
  * is expected to contain a properly constructed zone.  The program "zonetodb"
  * creates such a table.
  */
index d57e1efbd70177d137c6c913855d3621e29b0ac9..9035600e72fa03c92165edbd80cf64022d749f9c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 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: tcldb.c,v 1.11 2011/10/11 00:09:02 each Exp $ */
+/* $Id: tcldb.c,v 1.12 2011/10/11 23:46:45 tbox Exp $ */
 
 /*
  * A simple database driver that calls a Tcl procedure to define
@@ -85,7 +85,7 @@ tcldb_driver_create(isc_mem_t *mctx, tcldb_driver_t **driverp) {
  cleanup:
        isc_mem_put(mctx, driver, sizeof(tcldb_driver_t));
        return (result);
-       
+
 }
 
 static void
@@ -195,13 +195,13 @@ tcldb_create(const char *zone, int argc, char **argv,
        tcldb_driver_t *driver = (tcldb_driver_t *) driverdata;
 
        char *list = Tcl_Merge(argc, argv);
-       
+
        Tcl_SetVar2(driver->interp, (char *) "dbargs", (char *) zone, list, 0);
 
        Tcl_Free(list);
 
        *dbdata = driverdata;
-       
+
        return (ISC_R_SUCCESS);
 }
 
@@ -223,11 +223,11 @@ isc_result_t
 tcldb_init(void) {
        isc_result_t result;
        int flags = DNS_SDBFLAG_RELATIVEOWNER | DNS_SDBFLAG_RELATIVERDATA;
-       
+
        result = tcldb_driver_create(ns_g_mctx, &the_driver);
        if (result != ISC_R_SUCCESS)
                return (result);
-       
+
        return (dns_sdb_register("tcl", &tcldb_methods, the_driver, flags,
                                 ns_g_mctx, &tcldb));
 }
index b2311c0b4c5f134d35f915cbdf5c306322f681cc..704014f13eb5210d94bbb7f47eb943def122814c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 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: timedb.c,v 1.11 2011/10/11 00:09:03 each Exp $ */
+/* $Id: timedb.c,v 1.12 2011/10/11 23:46:45 tbox Exp $ */
 
 /*
  * A simple database driver that enables the server to return the
@@ -43,10 +43,10 @@ static dns_sdbimplementation_t *timedb = NULL;
 /*
  * This database operates on relative names.
  *
- * "time" and "@" return the time in a TXT record.  
+ * "time" and "@" return the time in a TXT record.
  * "clock" is a CNAME to "time"
  * "current" is a DNAME to "@" (try time.current.time)
- */ 
+ */
 #ifdef DNS_CLIENTINFO_VERSION
 static isc_result_t
 timedb_lookup(const char *zone, const char *name, void *dbdata,
index b947197ffdc588405fbdade40ab35f42ad68ece9..4f2b89cda43e4c4724a186e780ab3f3afe10399e 100644 (file)
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: clientinfo.h,v 1.2 2011/10/11 00:09:03 each Exp $ */
+/* $Id: clientinfo.h,v 1.3 2011/10/11 23:46:45 tbox Exp $ */
 
 #ifndef DNS_CLIENTINFO_H
 #define DNS_CLIENTINFO_H 1
@@ -31,7 +31,7 @@
  * The clientinfo interface is used by the DNS DB and DLZ interfaces;
  * it allows databases to modify their answers on the basis of information
  * about the client, such as source IP address.
- * 
+ *
  * dns_clientinfo_t contains a pointer to an opaque structure containing
  * client information in some form.  dns_clientinfomethods_t contains a
  * list of methods which operate on that opaque structure to return
index 7975f902ce21221bdb007ad31e09500fec9f14b6..c101a56919e1f001dbb2705cc1ed89338924e195 100644 (file)
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dlz_dlopen.h,v 1.3 2011/10/11 00:09:03 each Exp $ */
+/* $Id: dlz_dlopen.h,v 1.4 2011/10/11 23:46:45 tbox Exp $ */
 
 /*! \file dns/dlz_open.h */
 
@@ -123,7 +123,7 @@ typedef isc_result_t dlz_dlopen_configure_t (dns_view_t *view,
  * before sending a replay.
  */
 typedef isc_result_t dlz_dlopen_setclientcallback_t (dns_view_t *view,
-                                                     void *dbdata);
+                                                    void *dbdata);
 
 
 /*
index b6b3a79b1e4611a1b1d7651f2ae68284d07cab2c..1f142bee88c06327d27530dd582e37054fbc8dd1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2007, 2009  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2007, 2009, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 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: sdb.h,v 1.24 2011/10/11 00:09:03 each Exp $ */
+/* $Id: sdb.h,v 1.25 2011/10/11 23:46:45 tbox Exp $ */
 
 #ifndef DNS_SDB_H
 #define DNS_SDB_H 1