]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorTinderbox User <tbox@isc.org>
Wed, 26 Jun 2013 23:45:38 +0000 (23:45 +0000)
committerTinderbox User <tbox@isc.org>
Wed, 26 Jun 2013 23:45:38 +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

index b978bc100113f4164200becb70c21608c801c394..e05c7462db3104f4f43cff2e06634ee934f06706 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007, 2009, 2011  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 c3af7258d44c712e1870d09bb38b61a255a849de..5ac325b83ca839b0ff4e375964028c10f790ff0d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007, 2008, 2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2008, 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 3e17c2e4c88ceb0ba00cdd67df67e79aac0b718a..02d3c6682ef245261d7bdc88b8408f2e82d24f9f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2006, 2007, 2009  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2007, 2009, 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