2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

[master] corrected typos & unintialized variable

This commit is contained in:
Evan Hunt
2013-02-25 13:23:42 -08:00
parent 94315060c2
commit dcf426e9b5
2 changed files with 5 additions and 4 deletions

View File

@@ -26,6 +26,7 @@
#include <isc/mem.h>
#include <isc/net.h>
#include <isc/netaddr.h>
#include <isc/print.h>
#include <dns/result.h>
#include <dns/rcode.h>
@@ -860,7 +861,7 @@ make_log_buf(dns_rrl_t *rrl, dns_rrl_entry_t *e,
ADD_LOG_CSTR(&lb, "error response");
} else {
rstr = isc_result_totext(resp_result);
add_log_str(&lb, rstr, strlen(rstr);
add_log_str(&lb, rstr, strlen(rstr));
ADD_LOG_CSTR(&lb, " response");
}
break;