Bump miekg/dns

This commit is contained in:
Frank Denis 2022-05-11 19:38:45 +02:00
parent 9c8c327703
commit c367a82ac0
75 changed files with 3243 additions and 253 deletions

View file

@ -53,7 +53,7 @@ func relError(file, path string) error {
// LookPath instead returns an error.
func LookPath(file string) (string, error) {
path, err := exec.LookPath(file)
if err != nil {
if err != nil && !isGo119ErrDot(err) {
return "", err
}
if filepath.Base(file) == file && !filepath.IsAbs(path) {