diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2019-07-29 17:46:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-29 17:46:48 +0200 |
commit | d6c4b113c17a011530e93f179b7ac27eb3f17b9b (patch) | |
tree | e779d0a6defd166816da90ecbce3179636f30000 /plumbing/transport/ssh/auth_method.go | |
parent | b294aa1351a9c1e9388d7901033596514cf5eaa9 (diff) | |
parent | ab19315b3137e0e10a4e638c8ea37610adc592ba (diff) | |
download | go-git-d6c4b113c17a011530e93f179b7ac27eb3f17b9b.tar.gz |
Merge pull request #1199 from src-d/clean-up
*: code quality improvements
Diffstat (limited to 'plumbing/transport/ssh/auth_method.go')
-rw-r--r-- | plumbing/transport/ssh/auth_method.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/transport/ssh/auth_method.go b/plumbing/transport/ssh/auth_method.go index dbb47c5..1e5c383 100644 --- a/plumbing/transport/ssh/auth_method.go +++ b/plumbing/transport/ssh/auth_method.go @@ -61,7 +61,7 @@ func (a *KeyboardInteractive) ClientConfig() (*ssh.ClientConfig, error) { return a.SetHostKeyCallback(&ssh.ClientConfig{ User: a.User, Auth: []ssh.AuthMethod{ - ssh.KeyboardInteractiveChallenge(a.Challenge), + a.Challenge, }, }) } |