From: Mark Andrews Date: Tue, 4 Nov 2014 06:02:32 +0000 (+1100) Subject: add missing opening bracket X-Git-Tag: v9.11.0a1~1291 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a31d0513c30cc8125edb36b9330e5db55c317ff7;p=thirdparty%2Fbind9.git add missing opening bracket --- diff --git a/lib/dns/rdata/generic/openpgpkey_61.c b/lib/dns/rdata/generic/openpgpkey_61.c index c8558b4bd6b..d6801959a55 100644 --- a/lib/dns/rdata/generic/openpgpkey_61.c +++ b/lib/dns/rdata/generic/openpgpkey_61.c @@ -48,7 +48,9 @@ totext_openpgpkey(ARGS_TOTEXT) { /* * Keyring */ - RETERR(str_totext(tctx->linebreak, target)); + if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0) + RETERR(str_totext("( ", target)); + if ((tctx->flags & DNS_STYLEFLAG_NOCRYPTO) == 0) { if (tctx->width == 0) /* No splitting */ RETERR(isc_base64_totext(&sr, 60, "", target));