From: Willem Toorop Date: Mon, 23 Sep 2013 09:05:50 +0000 (+0200) Subject: Fix documentation of ldns_resolver_set_retry X-Git-Tag: release-1.6.17rc1~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8afc6d5133b3e32ca3ffb6976d80fc85a6e6ff89;p=thirdparty%2Fldns.git Fix documentation of ldns_resolver_set_retry --- diff --git a/Changelog b/Changelog index 34add169..54902051 100644 --- a/Changelog +++ b/Changelog @@ -44,6 +44,7 @@ * The version of shared library now has similar scheme as libunbound. ldns 1.7.0 will have shared library version (SONAME) 2.0.0 * bugfix #521: drill trace continue on empty non-terminals with NSEC3 + * bugfix #525: Fix documentation of ldns_resolver_set_retry 1.6.16 2012-11-13 * Fix Makefile to build pyldns with BSD make diff --git a/ldns/resolver.h b/ldns/resolver.h index b0e174e9..26d4f480 100644 --- a/ldns/resolver.h +++ b/ldns/resolver.h @@ -481,9 +481,10 @@ void ldns_resolver_set_retrans(ldns_resolver *r, uint8_t re); void ldns_resolver_set_fallback(ldns_resolver *r, bool fallback); /** - * Set the resolver retry interval (in seconds) + * Set the number of times a resolver should retry a nameserver before the + * next one is tried. * \param[in] r the resolver - * \param[in] re the retry interval + * \param[in] re the number of retries */ void ldns_resolver_set_retry(ldns_resolver *r, uint8_t re);