]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
add missing opening bracket
authorMark Andrews <marka@isc.org>
Tue, 4 Nov 2014 06:02:32 +0000 (17:02 +1100)
committerMark Andrews <marka@isc.org>
Tue, 4 Nov 2014 06:02:32 +0000 (17:02 +1100)
lib/dns/rdata/generic/openpgpkey_61.c

index c8558b4bd6b90c2a7af551bc4c87e640ebb84b53..d6801959a55d4d19267e1edf6bff7e74a667e919 100644 (file)
@@ -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));