Add ; before printing TSIG (#1051)

Automatically submitted.
This commit is contained in:
Miek Gieben 2019-12-17 15:18:05 +00:00 committed by cbot[bot]
parent aae7df65e6
commit bd4ba36771
1 changed files with 1 additions and 1 deletions

View File

@ -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) +