]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
bugfix #608: Correct comment about escaped chars
authorWillem Toorop <willem@nlnetlabs.nl>
Fri, 29 Aug 2014 07:27:06 +0000 (09:27 +0200)
committerWillem Toorop <willem@nlnetlabs.nl>
Fri, 29 Aug 2014 07:27:06 +0000 (09:27 +0200)
Changelog
str2host.c

index cff2794e77646ed5b9626adac4898fa32ef5946e..1f6ec18dc28b04d3d8b2591bc46faffdcc997b15 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -18,6 +18,7 @@ TBD
          (-y <[algo:]name:key> i.s.o. -y <name:key[:algo]>)
        * 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
index 24c6a3cbec5963e8be7e4f7ea38bce98354fb266..6552ea7287ef96a6e6347a08053572e85af5cfc5 100644 (file)
@@ -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