Skip to content

Commit 8f1f383

Browse files
remove references of forked repo
1 parent ad842dc commit 8f1f383

5 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The library implements the following specifications:
2626

2727
## Go Modules:
2828

29-
`go get github.com/gustavoluvizotto/ldap-fork/v3`
29+
`go get github.com/go-ldap/ldap/v3`
3030

3131
As go-ldap was v2+ when Go Modules came out, updating to Go Modules would be considered a breaking change.
3232

@@ -39,7 +39,7 @@ https://tools.ietf.org/html/rfc4511
3939
For more info, please visit the pull request that updated to modules.
4040
https://github.com/go-ldap/ldap/pull/247
4141

42-
To install with `GOMODULE111=off`, use `go get github.com/gustavoluvizotto/ldap-fork`
42+
To install with `GOMODULE111=off`, use `go get github.com/go-ldap/ldap/v3`
4343
https://golang.org/cmd/go/#hdr-Legacy_GOPATH_go_get
4444

4545
As always, we are looking for contributors with great ideas on how to best move forward.

examples_windows_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package ldap
66
import (
77
"log"
88

9-
"github.com/gustavoluvizotto/ldap-fork/gssapi"
9+
"github.com/go-ldap/ldap/gssapi"
1010
)
1111

1212
// This example demonstrates passwordless bind using the current process' user

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/gustavoluvizotto/ldap-fork
1+
module github.com/go-ldap/ldap
22

33
go 1.14
44

v3/examples_windows_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package ldap
66
import (
77
"log"
88

9-
"github.com/gustavoluvizotto/ldap-fork/v3/gssapi"
9+
"github.com/go-ldap/ldap/v3/gssapi"
1010
)
1111

1212
// This example demonstrates passwordless bind using the current process' user

v3/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/gustavoluvizotto/ldap-fork/v3
1+
module github.com/go-ldap/ldap/v3
22

33
go 1.14
44

0 commit comments

Comments
 (0)