2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-03 16:15:27 +00:00

An error message was printing a result code as a number, not a string.

This commit is contained in:
Brian Wellington
2000-08-09 21:15:32 +00:00
parent 1199d0ee34
commit 8b858da2bb

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: adb.c,v 1.145 2000/08/09 00:09:35 gson Exp $ */ /* $Id: adb.c,v 1.146 2000/08/09 21:15:32 bwelling Exp $ */
/* /*
* Implementation notes * Implementation notes
@@ -3489,8 +3489,8 @@ fetch_callback_a6(isc_task_t *task, isc_event_t *ev) {
* don't do this. * don't do this.
*/ */
if (dev->result != ISC_R_SUCCESS) { if (dev->result != ISC_R_SUCCESS) {
DP(DEF_LEVEL, "name %p: A6 failed, result %u", DP(DEF_LEVEL, "name %p: A6 failed: %s",
name, dev->result); name, isc_result_totext(dev->result));
/* /*
* If we got a negative cache response, remember it. * If we got a negative cache response, remember it.