From bd4ba36771e81efc79863cdc4ac1464e295cfc84 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 17 Dec 2019 15:18:05 +0000 Subject: [PATCH] Add ; before printing TSIG (#1051) Automatically submitted. --- tsig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsig.go b/tsig.go index 2c4ef03b..61efa248 100644 --- a/tsig.go +++ b/tsig.go @@ -40,7 +40,7 @@ type TSIG struct { // TSIG has no official presentation format, but this will suffice. func (rr *TSIG) String() string { - s := "\n;; TSIG PSEUDOSECTION:\n" + s := "\n;; TSIG PSEUDOSECTION:\n; " // add another semi-colon to signify TSIG does not have a presentation format s += rr.Hdr.String() + " " + rr.Algorithm + " " + tsigTimeToString(rr.TimeSigned) +