summaryrefslogtreecommitdiff
path: root/contrib/unbound/services/rpz.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/unbound/services/rpz.c')
-rw-r--r--contrib/unbound/services/rpz.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/contrib/unbound/services/rpz.c b/contrib/unbound/services/rpz.c
index 105f238d0a6d..ba5dd186daad 100644
--- a/contrib/unbound/services/rpz.c
+++ b/contrib/unbound/services/rpz.c
@@ -597,8 +597,18 @@ rpz_insert_rr(struct rpz* r, uint8_t* azname, size_t aznamelen, uint8_t* dname,
uint8_t* policydname;
if(!dname_subdomain_c(dname, azname)) {
- log_err("RPZ: name of record to insert into RPZ is not a "
- "subdomain of the configured name of the RPZ zone");
+ char* dname_str = sldns_wire2str_dname(dname, dnamelen);
+ char* azname_str = sldns_wire2str_dname(azname, aznamelen);
+ if(dname_str && azname_str) {
+ log_err("RPZ: name of record (%s) to insert into RPZ is not a "
+ "subdomain of the configured name of the RPZ zone (%s)",
+ dname_str, azname_str);
+ } else {
+ log_err("RPZ: name of record to insert into RPZ is not a "
+ "subdomain of the configured name of the RPZ zone");
+ }
+ free(dname_str);
+ free(azname_str);
return 0;
}