From cf5d7a50945386af1002d3fe556ade39160fb746 Mon Sep 17 00:00:00 2001 From: Automatic Updater Date: Fri, 8 Aug 2008 06:28:59 +0000 Subject: [PATCH] update copyright notice --- lib/isc/include/isc/msgs.h | 6 +++--- lib/isc/win32/errno2result.c | 4 ++-- lib/isc/win32/socket.c | 18 +++++++++--------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/isc/include/isc/msgs.h b/lib/isc/include/isc/msgs.h index 88505a5465..d8f2787a28 100644 --- a/lib/isc/include/isc/msgs.h +++ b/lib/isc/include/isc/msgs.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2004-2007 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/or distribute this software for any @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: msgs.h,v 1.16 2008/08/08 05:06:49 marka Exp $ */ +/* $Id: msgs.h,v 1.17 2008/08/08 06:28:59 tbox Exp $ */ #ifndef ISC_MSGS_H #define ISC_MSGS_H 1 @@ -57,7 +57,7 @@ /*@{*/ /*! - * Message numbers + * Message numbers * are only required to be unique per message set, * but are unique throughout the entire catalog to not be as confusing when * debugging. diff --git a/lib/isc/win32/errno2result.c b/lib/isc/win32/errno2result.c index 333c7c1591..bf25a2e188 100644 --- a/lib/isc/win32/errno2result.c +++ b/lib/isc/win32/errno2result.c @@ -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-2002 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.15 2008/08/08 05:06:49 marka Exp $ */ +/* $Id: errno2result.c,v 1.16 2008/08/08 06:28:59 tbox Exp $ */ #include diff --git a/lib/isc/win32/socket.c b/lib/isc/win32/socket.c index b1edd845f9..ede00c623a 100644 --- a/lib/isc/win32/socket.c +++ b/lib/isc/win32/socket.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: socket.c,v 1.63 2008/08/08 05:06:49 marka Exp $ */ +/* $Id: socket.c,v 1.64 2008/08/08 06:28:59 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 @@ -569,9 +569,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); } @@ -902,9 +902,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) { @@ -2275,15 +2275,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",