diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c index 49e53da36a..f872c56588 100644 --- a/lib/dns/resolver.c +++ b/lib/dns/resolver.c @@ -11179,9 +11179,11 @@ dns_resolver_dumpfetches(dns_resolver_t *res, isc_statsformat_t format, dns_rdatatype_format(fctx->type, typebuf, sizeof(typebuf)); - fprintf(fp, "/%s (%s): started %s, ", typebuf, - fctx->state == fetchstate_active ? "active" : "done", - timebuf); + fprintf(fp, "/%s (%s), 0x%x: started %s, ", typebuf, + fctx->state == fetchstate_done ? "done" + : fctx->cloned ? "cloned" + : "active", + fctx->options, timebuf); for (resp = ISC_LIST_HEAD(fctx->resps); resp != NULL; resp = ISC_LIST_NEXT(resp, link))