diff options
Diffstat (limited to 'pkg/vpn/bonafide')
-rw-r--r-- | pkg/vpn/bonafide/auth_anon.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/vpn/bonafide/auth_anon.go b/pkg/vpn/bonafide/auth_anon.go index c6c5775..9fc9587 100644 --- a/pkg/vpn/bonafide/auth_anon.go +++ b/pkg/vpn/bonafide/auth_anon.go @@ -22,7 +22,7 @@ import ( type anonymousAuthentication struct{} func (a *anonymousAuthentication) needsCredentials() bool { - return true + return false } func (a *anonymousAuthentication) getToken(user, password string) ([]byte, error) { |