-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removes gofork direct usage as fix is part of go
fixes #1438 `jcmturner/gokrb5` needs to use the `jcmturner/gofork` in order to have some workarounds about some stuff not implemented or not working as expected. For the specific case of github.com/jcmturner/gofork/encoding/asn1 there is no reason right now to keep using `jcmturner/gofork` as the issue golang/go#17321 was solved/closed in Dec 15, 2016 and released in go 1.10 `jcmturner/gokrb5` still uses internally `jcmturner/gofork`, it seems the `gofork` `asn1` part could be removed and use the standar library, but that will need some more work and PRs on the `jcmturner/gokrb5` side.
- Loading branch information
Showing
3 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,3 +50,7 @@ get: | |
.PHONY: clean | ||
clean: | ||
go clean ./... | ||
|
||
.PHONY: tidy | ||
tidy: | ||
go mod tidy -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters