]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Mon, 28 Mar 2011 23:45:57 +0000 (23:45 +0000)
committerAutomatic Updater <source@isc.org>
Mon, 28 Mar 2011 23:45:57 +0000 (23:45 +0000)
bin/tests/dst/gsstest.c
lib/dns/gssapi_link.c
lib/dns/gssapictx.c
lib/dns/spnego.c

index 42e91ef39d694451c4880b413327562726b73a34..70c50ddf1558febae1569614fc1d4545a552ca31 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006, 2007, 2011  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
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: gsstest.c,v 1.6.332.1 2011/03/28 05:16:59 marka Exp $ */
+/* $Id: gsstest.c,v 1.6.332.2 2011/03/28 23:45:57 tbox Exp $ */
 
 #include <config.h>
 
@@ -175,7 +175,7 @@ recvresponse(isc_task_t *task, isc_event_t *event) {
 end:
        if (query)
                dns_message_destroy(&query);
-       
+
        if (reqev->request)
                dns_request_destroy(&reqev->request);
 
@@ -184,7 +184,7 @@ end:
        event = isc_event_allocate(mctx, (void *)1, 1, console, NULL,
                                   sizeof(*event));
        isc_task_send(task, &event);
-       return;         
+       return;
 }
 
 
@@ -202,7 +202,7 @@ sendquery(isc_task_t *task, isc_event_t *event)
        char output[10 * 1024];
 
        static char host[256];
-       
+
        isc_event_free(&event);
 
        printf("Query => ");
@@ -335,7 +335,7 @@ end:
                dns_request_destroy(&reqev->request);
 
        isc_event_free(&event);
-       
+
        event = isc_event_allocate(mctx, (void *)1, 1, console, NULL,
                                   sizeof(*event));
        isc_task_send(task, &event);
@@ -357,14 +357,14 @@ initctx1(isc_task_t *task, isc_event_t *event) {
        sprintf(contextname, "gsstest.context.%d.", (int)time(NULL));
 
        printf("Initctx - context name we're using: %s\n", contextname);
-       
+
        printf("Negotiating GSSAPI context: ");
        printf(gssid);
        printf("\n");
 
        /*
         * Setup a GSSAPI context with the server
-        */ 
+        */
        dns_fixedname_init(&servername);
        isc_buffer_init(&buf, contextname, strlen(contextname));
        isc_buffer_add(&buf, strlen(contextname));
@@ -372,7 +372,7 @@ initctx1(isc_task_t *task, isc_event_t *event) {
                                   dns_rootname, ISC_FALSE, NULL);
        CHECK("dns_name_fromtext", result);
 
-       /* Make name happen */  
+       /* Make name happen */
        dns_fixedname_init(&gssname);
        isc_buffer_init(&buf, gssid, strlen(gssid));
        isc_buffer_add(&buf, strlen(gssid));
@@ -423,7 +423,7 @@ setup(void)
                        isc_sockaddr_fromin(&address, &inaddr, PORT);
                        return;
                }
-       
+
        }
 }
 
@@ -446,7 +446,7 @@ main(int argc, char *argv[]) {
 
        UNUSED(argv);
        UNUSED(argc);
-       
+
        RUNCHECK(isc_app_start());
 
        dns_result_register();
@@ -519,7 +519,7 @@ main(int argc, char *argv[]) {
                                   &sock));
 
        setup();
-       
+
        RUNCHECK(isc_app_onrun(mctx, task, console, NULL));
 
        (void)isc_app_run();
@@ -529,10 +529,10 @@ main(int argc, char *argv[]) {
 
        dns_requestmgr_shutdown(requestmgr);
        dns_requestmgr_detach(&requestmgr);
-       
+
        dns_dispatch_detach(&dispatchv4);
        dns_dispatchmgr_destroy(&dispatchmgr);
-       
+
        isc_timermgr_destroy(&timermgr);
 
        isc_task_detach(&task);
index e8a543455ffcd6e6e7f6447268fb92e949ca446c..2d733822a5d7663e264a1f64a72f420583daac94 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2008  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2008, 2011  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000-2002  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -16,7 +16,7 @@
  */
 
 /*
- * $Id: gssapi_link.c,v 1.12.12.1 2011/03/28 05:37:32 marka Exp $
+ * $Id: gssapi_link.c,v 1.12.12.2 2011/03/28 23:45:57 tbox Exp $
  */
 
 #include <config.h>
index 215787e8a118efd993b432594a5ff31c8879b938..744f5b77a4676e59962052bbdc8c91a577682a60 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2008, 2010  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2008, 2010, 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: gssapictx.c,v 1.12.118.6 2011/03/28 05:24:50 marka Exp $ */
+/* $Id: gssapictx.c,v 1.12.118.7 2011/03/28 23:45:57 tbox Exp $ */
 
 #include <config.h>
 
index 3b3efca52850440c933540c192bbb40d34d92f20..fb28d7101ac38339ca09401b207fafaef9536e6e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2006-2009  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2006-2009, 2011  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
@@ -14,7 +14,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: spnego.c,v 1.8.118.6 2011/03/28 05:10:04 marka Exp $ */
+/* $Id: spnego.c,v 1.8.118.7 2011/03/28 23:45:57 tbox Exp $ */
 
 /*! \file
  * \brief