]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update wording
authorMark Andrews <marka@isc.org>
Tue, 27 Jan 2004 01:19:41 +0000 (01:19 +0000)
committerMark Andrews <marka@isc.org>
Tue, 27 Jan 2004 01:19:41 +0000 (01:19 +0000)
CHANGES
bin/named/server.c

diff --git a/CHANGES b/CHANGES
index 155c976cb277cac6a704a17eb90f360955ba3614..6c1e6082a94e5fe75751c83444dc6e928bacec86 100644 (file)
--- 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]
index 5ce5696069157af557ecdfb994282068e5e91e36..f625a1120aea6f7c3b71919dcc2704539482abe6 100644 (file)
@@ -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 <config.h>
 
@@ -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;
        }