I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core
22 lines
761 B
Diff
22 lines
761 B
Diff
Index: contrib/bind9/lib/dns/rdata/in_1/apl_42.c
|
|
===================================================================
|
|
--- contrib/bind9/lib/dns/rdata/in_1/apl_42.c (revision 294299)
|
|
+++ contrib/bind9/lib/dns/rdata/in_1/apl_42.c (working copy)
|
|
@@ -116,7 +116,7 @@ totext_in_apl(ARGS_TOTEXT) {
|
|
isc_uint8_t len;
|
|
isc_boolean_t neg;
|
|
unsigned char buf[16];
|
|
- char txt[sizeof(" !64000")];
|
|
+ char txt[sizeof(" !64000:")];
|
|
const char *sep = "";
|
|
int n;
|
|
|
|
@@ -140,7 +140,7 @@ totext_in_apl(ARGS_TOTEXT) {
|
|
isc_region_consume(&sr, 1);
|
|
INSIST(len <= sr.length);
|
|
n = snprintf(txt, sizeof(txt), "%s%s%u:", sep,
|
|
- neg ? "!": "", afi);
|
|
+ neg ? "!" : "", afi);
|
|
INSIST(n < (int)sizeof(txt));
|
|
RETERR(str_totext(txt, target));
|
|
switch (afi) {
|