]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice / whitespace
authorTinderbox User <tbox@isc.org>
Thu, 8 Feb 2018 23:51:13 +0000 (23:51 +0000)
committerTinderbox User <tbox@isc.org>
Thu, 8 Feb 2018 23:51:13 +0000 (23:51 +0000)
bin/dig/dig.docbook
lib/isc/win32/socket.c
lib/samples/sample-update.c

index 467d57ee5999fb08554f50b8e097220358576c8b..c687ff509caa26dde5fde1b728774e00302ebe6c 100644 (file)
@@ -1,7 +1,7 @@
 <!DOCTYPE book [
 <!ENTITY mdash "&#8212;">]>
 <!--
- - Copyright (C) 2004-2011, 2013-2017  Internet Systems Consortium, Inc. ("ISC")
+ - Copyright (C) 2004-2011, 2013-2018  Internet Systems Consortium, Inc. ("ISC")
  - Copyright (C) 2000-2003  Internet Software Consortium.
  -
  - Permission to use, copy, modify, and/or distribute this software for any
@@ -53,6 +53,7 @@
       <year>2015</year>
       <year>2016</year>
       <year>2017</year>
+      <year>2018</year>
       <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
     </copyright>
     <copyright>
index 13f35aabff19946d7325f08032bd8cc7ea84712b..a9c1f95f40feed061e062ab7b8eb491befd5a6f6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2017  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2018  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index e185cb408509b86ca9d5c62e8d635596730c3a70..f350ae912442416c61bf9b9e85f0494220212f5f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009, 2010, 2012-2017  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2009, 2010, 2012-2018  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
@@ -94,22 +94,22 @@ usage(void) {
 #ifdef _WIN32
 static void
 InitSockets(void) {
-        WORD wVersionRequested;
-        WSADATA wsaData;
-        int err;
+       WORD wVersionRequested;
+       WSADATA wsaData;
+       int err;
 
-        wVersionRequested = MAKEWORD(2, 0);
+       wVersionRequested = MAKEWORD(2, 0);
 
-        err = WSAStartup(wVersionRequested, &wsaData);
-        if (err != 0) {
-                fprintf(stderr, "WSAStartup() failed: %d\n", err);
-                exit(1);
-        }
+       err = WSAStartup(wVersionRequested, &wsaData);
+       if (err != 0) {
+               fprintf(stderr, "WSAStartup() failed: %d\n", err);
+               exit(1);
+       }
 }
 
 static void
 DestroySockets(void) {
-        WSACleanup();
+       WSACleanup();
 }
 #else
 #define InitSockets() ((void)0)