2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 10:10:06 +00:00

[master] fixed mistake with delve +short

This commit is contained in:
Evan Hunt 2014-02-16 13:25:53 -08:00
parent b412cb5334
commit cd38c8c1bb

View File

@ -465,7 +465,9 @@ printdata(dns_rdataset_t *rdataset, dns_name_t *owner,
if (result == ISC_R_NOSPACE) {
isc_mem_put(mctx, t, len);
len += 1024;
} else
} else if (result == ISC_R_NOMORE)
result = ISC_R_SUCCESS;
else
CHECK(result);
} while (result == ISC_R_NOSPACE);