remove redondant variable declaration

This commit is contained in:
Antoine 2020-11-09 14:01:14 +01:00
parent aa3931e6df
commit 46fd83b798
Firmato da: antoine
ID Chiave GPG: 098FB66FC0475E70
1 ha cambiato i file con 1 aggiunte e 3 eliminazioni

Vedi 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{}