Prefix with dns: here too

This commit is contained in:
Miek Gieben 2012-02-29 21:15:58 +01:00
parent b07a05d5ca
commit c7d38a11f1
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ func (e *ParseError) Error() (s string) {
if e.file != "" {
s = e.file + ": "
}
s += e.err + ": `" + e.lex.token + "' at line: " +
s += "dns:" + e.err + ": `" + e.lex.token + "' at line: " +
strconv.Itoa(e.lex.line) + ":" + strconv.Itoa(e.lex.column)
return
}