From: Willem Toorop Date: Fri, 29 Aug 2014 07:27:06 +0000 (+0200) Subject: bugfix #608: Correct comment about escaped chars X-Git-Tag: release-1.7.0-rc1~151 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3b6aecd5d30cd5d936ab6208539c36196643971;p=thirdparty%2Fldns.git bugfix #608: Correct comment about escaped chars --- diff --git a/Changelog b/Changelog index cff2794e..1f6ec18d 100644 --- a/Changelog +++ b/Changelog @@ -18,6 +18,7 @@ TBD (-y <[algo:]name:key> i.s.o. -y ) * CDNSKEY and OPENPGPKEY draft rr types. enable with: --enable-rrtype-cdnskey and --enable-rrtype-openpgpkey + * bugfix #608: Correct comment about escaped characters 1.6.17 2014-01-10 * Fix ldns_dnssec_zone_new_frm_fp_l to allow the last parsed line of a diff --git a/str2host.c b/str2host.c index 24c6a3cb..6552ea72 100644 --- a/str2host.c +++ b/str2host.c @@ -248,11 +248,11 @@ ldns_str2rdf_int8(ldns_rdf **rd, const char *bytestr) /* - * Checks whether the escaped value at **s is an octal value or + * Checks whether the escaped value at **s is an decimal value or * a 'normally' escaped character (and not eos) * * The string pointer at *s is increased by either 0 (on error), 1 (on - * normal escapes), or 3 (on octals) + * normal escapes), or 3 (on decimals) * * Returns the number of bytes read from the escaped string, or * 0 on error