Fix TXT lenght again, but now it looks more right

This commit is contained in:
Miek Gieben 2013-06-27 14:43:57 +00:00
parent 53789814d0
commit b651c7ea1f
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ func (rr *TXT) String() string {
func (rr *TXT) len() int {
l := rr.Hdr.len()
for _, t := range rr.Txt {
l += len(t)
l += len(t) + 1
}
return l
}