diff --git a/Makefile.fuzz b/Makefile.fuzz index 7817c2ced..7d7acfd0e 100644 --- a/Makefile.fuzz +++ b/Makefile.fuzz @@ -13,11 +13,11 @@ all: build .PHONY: build build: - go-fuzz-build -tags fuzz github.com/zdns/dns + go-fuzz-build -tags fuzz github.com/zmap/dns .PHONY: build-newrr build-newrr: - go-fuzz-build -func FuzzNewRR -tags fuzz github.com/zdns/dns + go-fuzz-build -func FuzzNewRR -tags fuzz github.com/zmap/dns .PHONY: fuzz fuzz: diff --git a/Makefile.release b/Makefile.release index 9b35b6ca2..aff898c60 100644 --- a/Makefile.release +++ b/Makefile.release @@ -18,7 +18,7 @@ package main import ( "fmt" - "github.com/zdns/dns" + "github.com/zmap/dns" ) func main() { diff --git a/dnsutil/util.go b/dnsutil/util.go index 13ef87b78..c3f3a844e 100644 --- a/dnsutil/util.go +++ b/dnsutil/util.go @@ -8,7 +8,7 @@ package dnsutil import ( "strings" - "github.com/zdns/dns" + "github.com/zmap/dns" ) // AddOrigin adds origin to s if s is not already a FQDN. diff --git a/duplicate_generate.go b/duplicate_generate.go index 1115e5e16..1377c6b73 100644 --- a/duplicate_generate.go +++ b/duplicate_generate.go @@ -56,7 +56,7 @@ func loadModule(name string) (*types.Package, error) { func main() { // Import and type-check the package - pkg, err := loadModule("github.com/zdns/dns") + pkg, err := loadModule("github.com/zmap/dns") fatalIfErr(err) scope := pkg.Scope() diff --git a/example_test.go b/example_test.go index 354433267..408558ac3 100644 --- a/example_test.go +++ b/example_test.go @@ -6,7 +6,7 @@ import ( "log" "net" - "github.com/zdns/dns" + "github.com/zmap/dns" ) // Retrieve the MX records for miek.nl. diff --git a/go.mod b/go.mod index 5113ca827..b989939f1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/zdns/dns +module github.com/zmap/dns go 1.19 diff --git a/msg_generate.go b/msg_generate.go index 2609374c5..ac411e17f 100644 --- a/msg_generate.go +++ b/msg_generate.go @@ -61,7 +61,7 @@ func loadModule(name string) (*types.Package, error) { func main() { // Import and type-check the package - pkg, err := loadModule("github.com/zdns/dns") + pkg, err := loadModule("github.com/zmap/dns") fatalIfErr(err) scope := pkg.Scope() diff --git a/privaterr_test.go b/privaterr_test.go index 1df2d6ec5..aa21da285 100644 --- a/privaterr_test.go +++ b/privaterr_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/zdns/dns" + "github.com/zmap/dns" ) const TypeISBN uint16 = 0xFF00 diff --git a/types_generate.go b/types_generate.go index c89512353..c393fffb9 100644 --- a/types_generate.go +++ b/types_generate.go @@ -98,7 +98,7 @@ func loadModule(name string) (*types.Package, error) { func main() { // Import and type-check the package - pkg, err := loadModule("github.com/zdns/dns") + pkg, err := loadModule("github.com/zmap/dns") fatalIfErr(err) scope := pkg.Scope()