From: Mark Andrews Date: Tue, 27 Jan 2004 01:19:41 +0000 (+0000) Subject: update wording X-Git-Tag: v9.2.4rc1~81^2~15 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=b3d3e578410209d849efb59c9ea4925ca5c9ca68;p=thirdparty%2Fbind9.git update wording --- diff --git a/CHANGES b/CHANGES index 155c976cb27..6c1e6082a94 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -1563. [bug] Gracefully fail when unable to obtain neither a IPv4 - or a IPv6 dispatch. [RT #10230] +1563. [bug] Gracefully fail when unable to obtain neither an IPv4 + nor an IPv6 dispatch. [RT #10230] 1562. [bug] isc_socket_create() and isc_socket_accept() could leak memory under error conditions. [RT #10230] diff --git a/bin/named/server.c b/bin/named/server.c index 5ce56960691..f625a1120ae 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: server.c,v 1.409 2004/01/26 23:44:12 marka Exp $ */ +/* $Id: server.c,v 1.410 2004/01/27 01:19:41 marka Exp $ */ #include @@ -801,8 +801,8 @@ configure_view(dns_view_t *view, cfg_obj_t *config, cfg_obj_t *vconfig, CHECK(get_view_querysource_dispatch(maps, AF_INET6, &dispatch6)); if (dispatch4 == NULL && dispatch6 == NULL) { UNEXPECTED_ERROR(__FILE__, __LINE__, - "unable to obtain neither a IPv4 or" - " a IPv6 dispatch"); + "unable to obtain neither an IPv4 nor" + " an IPv6 dispatch"); result = ISC_R_UNEXPECTED; goto cleanup; }