Don't fatal out on unknown record types in BIND

This commit is contained in:
Mark Henderson 2017-01-13 16:20:22 -05:00
parent 4c448422dd
commit 988278b612
No known key found for this signature in database
GPG key ID: 793F1E9B1507A14F

View file

@ -97,7 +97,7 @@ func rrToRecord(rr dns.RR, origin string, replace_serial uint32) (models.RecordC
case *dns.TXT:
rc.Target = strings.Join(v.Txt, " ")
default:
log.Fatalf("Unimplemented zone record type=%s (%v)\n", rc.Type, rr)
log.Printf("Unimplemented zone record type=%s (%v)\n", rc.Type, rr)
}
return rc, old_serial
}