-1.6.8
+1.6.9
+ * Fix printout of escaped binary in TXT records.
+
+1.6.8 2011-01-24
* Fix ldns zone, so that $TTL definition match RFC 2308.
* Fix lots of missing checks on allocation failures and parse of
NSEC with many types and max parse length in hosts_frm_fp routine
data[src_pos]);
} else if (!isgraph((int) data[src_pos])) {
ldns_buffer_printf(output, "\\%03u",
- data[src_pos]);
+ data[src_pos]);
} else {
ldns_buffer_printf(output, "%c", data[src_pos]);
}
else
ldns_buffer_printf(output, "%c", ch);
} else {
- ldns_buffer_printf(output, "\\%03u", (unsigned) ch);
+ ldns_buffer_printf(output, "\\%03u",
+ (unsigned)(uint8_t) ch);
}
}
ldns_buffer_printf(output, "\"");