remove redondant variable declaration

This commit is contained in:
Antoine 2020-11-09 14:01:14 +01:00
parent aa3931e6df
commit 46fd83b798
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
1 changed files with 1 additions and 3 deletions

View File

@ -22,13 +22,11 @@ func main() {
// remove timestamp prefix from log out
log.SetFlags(0)
var body []byte
var err error
if *file != "" {
if *file == "-" {
*file = os.Stdin.Name()
}
body, err = ioutil.ReadFile(*file)
body, err := ioutil.ReadFile(*file)
check.Check(err)
msg := &dns.Msg{}