]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorTinderbox User <tbox@isc.org>
Wed, 26 Jun 2013 23:45:10 +0000 (23:45 +0000)
committerTinderbox User <tbox@isc.org>
Wed, 26 Jun 2013 23:45:10 +0000 (23:45 +0000)
bin/named/win32/ntservice.c
lib/isc/win32/include/isc/net.h
lib/isc/win32/netdb.h
lib/isc/win32/stdio.c
lib/lwres/win32/include/lwres/net.h
lib/lwres/win32/include/lwres/netdb.h
win32utils/win32-build.txt

index 472c5f7506b0cf27c677d31d938461f7c9148b70..26438b843252fd68764ab807aacb4b1cc28fd8e8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007, 2009, 2011, 2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2009, 2011-2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-2002  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 20bc2f4a1f9db90c39a4201a8868cc671d141da9..435e54dd08bb5e674c5d6a6104a57face0b55ed5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007-2009, 2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007-2009, 2012, 2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1999-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 53f993ad7d4875b63a9aaf34aba544aaedd51d74..e142c112099f66f553019355e30efe8c68f46d3e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007, 2009, 2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2009, 2012, 2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index c64248fd7c5cd5458ef180734cebde7112a681c3..69a1c6f09605814ef67abae22595148a4d7e215c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 599ced2d1db0c785d0f86645f015b614c37cfbc3..42a061ff4b69289a59cfb95090354dc6ae2314bf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
 #define FD_CLR(fd, set) do { \
     u_int __i; \
     for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
-        if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET) fd) { \
-            while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
-                ((fd_set FAR *)(set))->fd_array[__i] = \
-                    ((fd_set FAR *)(set))->fd_array[__i+1]; \
-                __i++; \
-            } \
-            ((fd_set FAR *)(set))->fd_count--; \
-            break; \
-        } \
+       if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET) fd) { \
+           while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
+               ((fd_set FAR *)(set))->fd_array[__i] = \
+                   ((fd_set FAR *)(set))->fd_array[__i+1]; \
+               __i++; \
+           } \
+           ((fd_set FAR *)(set))->fd_count--; \
+           break; \
+       } \
     } \
 } while (0)
 
 #define FD_SET(fd, set) do { \
     u_int __i; \
     for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
-        if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET)(fd)) { \
-            break; \
-        } \
+       if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET)(fd)) { \
+           break; \
+       } \
     } \
     if (__i == ((fd_set FAR *)(set))->fd_count) { \
-        if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) { \
-            ((fd_set FAR *)(set))->fd_array[__i] = (SOCKET)(fd); \
-            ((fd_set FAR *)(set))->fd_count++; \
-        } \
+       if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) { \
+           ((fd_set FAR *)(set))->fd_array[__i] = (SOCKET)(fd); \
+           ((fd_set FAR *)(set))->fd_count++; \
+       } \
     } \
 } while (0)
 
index 087e9a125114144bf4a25120af52f66734574a90..d6a988b1c007c1f9aa2adf21e77cf786e1803e2c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 84586eab9f8700d1012d2fdbd806219b30d46be7..006bbcd1a703cdce8c44e57a150ff72b1cbccdc4 100644 (file)
@@ -1,4 +1,4 @@
-Copyright (C) 2004, 2005, 2008, 2009, 2012  Internet Systems Consortium, Inc. ("ISC")
+Copyright (C) 2004, 2005, 2008, 2009, 2012, 2013  Internet Systems Consortium, Inc. ("ISC")
 Copyright (C) 2001, 2002  Internet Software Consortium.
 See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.