From: Willem Toorop Date: Tue, 3 Jan 2012 10:27:21 +0000 (+0000) Subject: typo fix X-Git-Tag: release-1.6.12~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2db61344761bd95e6d4ef3731bfa7decd9a309b;p=thirdparty%2Fldns.git typo fix --- diff --git a/ldns/rr_functions.h b/ldns/rr_functions.h index 4a8bf655..c66d97fd 100644 --- a/ldns/rr_functions.h +++ b/ldns/rr_functions.h @@ -266,7 +266,7 @@ typedef uint32_t (*ldns_soa_serial_increment_func_t)(uint32_t, void*); * Function to be used with dns_rr_soa_increment_func_int, to set the soa * serial number. * \param[in] _ the (unused) current serial number. - * \param[in] data the serial number to be set (when casted to uint32_t). + * \param[in] data the serial number to be set (when cast to uint32_t). */ uint32_t ldns_soa_serial_identity(uint32_t _, void *data); @@ -282,8 +282,8 @@ uint32_t ldns_soa_serial_increment(uint32_t s, void *_); * Function to be used with dns_rr_soa_increment_func_int, to increment the soa * serial number with a certain amount. * \param[in] s the current serial number. - * \param[in] data (casted to intptr_t) the amount to add to the - * current serial number. + * \param[in] data (when cast to intptr_t) the amount to add to the + * current serial number. */ uint32_t ldns_soa_serial_increment_by(uint32_t s, void *data);