]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Fri, 8 Aug 2008 06:27:25 +0000 (06:27 +0000)
committerAutomatic Updater <source@isc.org>
Fri, 8 Aug 2008 06:27:25 +0000 (06:27 +0000)
lib/isc/include/isc/msgs.h
lib/isc/win32/errno2result.c
lib/isc/win32/socket.c

index 2b0fa9a84e1d2d6254739b688b1dce761ffde94a..584edcbd881c45753d5f84ecce0dc784f2015e06 100644 (file)
@@ -1,8 +1,8 @@
 /*
- * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2008  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000-2003  Internet Software Consortium.
  *
- * Permission to use, copy, modify, and distribute this software for any
+ * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
  * copyright notice and this permission notice appear in all copies.
  *
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: msgs.h,v 1.5.2.2.8.4 2008/08/08 06:00:42 marka Exp $ */
+/* $Id: msgs.h,v 1.5.2.2.8.5 2008/08/08 06:27:25 tbox Exp $ */
 
 #ifndef ISC_MSGS_H
 #define ISC_MSGS_H 1
index 5b15858279c22a0c2424e25b322a9c29b07d8dfd..57a63dfa8fec9b4034a04cd672f42735c31b55bf 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000-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: errno2result.c,v 1.4.2.5.2.10 2008/08/08 06:00:42 marka Exp $ */
+/* $Id: errno2result.c,v 1.4.2.5.2.11 2008/08/08 06:27:25 tbox Exp $ */
 
 #include <config.h>
 
index fdd37e7dad53bcaad2cfb329d0ac156080aae46e..80bce28fafb63f073c860cc47c23e5a1d291ca6a 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: socket.c,v 1.5.2.13.2.35 2008/08/08 06:00:42 marka Exp $ */
+/* $Id: socket.c,v 1.5.2.13.2.36 2008/08/08 06:27:25 tbox Exp $ */
 
 /* This code has been rewritten to take advantage of Windows Sockets
  * I/O Completion Ports and Events. I/O Completion Ports is ONLY
@@ -562,9 +562,9 @@ socket_event_minit(sock_event_list *evlist) {
                                ISC_LOGCATEGORY_GENERAL,
                                ISC_LOGMODULE_SOCKET, ISC_LOG_ERROR,
                                isc_msgcat, ISC_MSGSET_SOCKET,
-                               ISC_MSG_TOOMANYHANDLES,
+                               ISC_MSG_TOOMANYHANDLES,
                                "%s: too many open WSA event handles: %s",
-                               "WSACreateEvent", strbuf);
+                               "WSACreateEvent", strbuf);
                return (ISC_R_UNEXPECTED);
        }
 
@@ -895,9 +895,9 @@ socket_event_add(isc_socket_t *sock, long type) {
                                ISC_LOGCATEGORY_GENERAL,
                                ISC_LOGMODULE_SOCKET, ISC_LOG_ERROR,
                                isc_msgcat, ISC_MSGSET_SOCKET,
-                               ISC_MSG_TOOMANYHANDLES,
+                               ISC_MSG_TOOMANYHANDLES,
                                "%s: too many open WSA event handles: %s",
-                               "WSACreateEvent", strbuf);
+                               "WSACreateEvent", strbuf);
                return (ISC_R_UNEXPECTED);
        }
        if (WSAEventSelect(sock->fd, hEvent, type) != 0) {
@@ -2244,15 +2244,15 @@ internal_accept(isc_socket_t *sock, int accept_errno) {
                                        ISC_LOGCATEGORY_GENERAL,
                                        ISC_LOGMODULE_SOCKET, ISC_LOG_ERROR,
                                        isc_msgcat, ISC_MSGSET_SOCKET,
-                                       ISC_MSG_TOOMANYFDS,
-                                       "%s: too many open file descriptors",
-                                       "accept");
+                                       ISC_MSG_TOOMANYFDS,
+                                       "%s: too many open file descriptors",
+                                       "accept");
                                goto soft_error;
                        } else if (SOFT_ERROR(accept_errno) ||
                                   accept_errno == WSAECONNRESET) {
                                goto soft_error;
                        } else {
-                               isc__strerror(accept_errno, strbuf, 
+                               isc__strerror(accept_errno, strbuf,
                                              sizeof(strbuf));
                                UNEXPECTED_ERROR(__FILE__, __LINE__,
                                         "internal_accept: accept() %s: %s",