diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-24 16:15:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-24 16:15:12 +0100 |
commit | b6765c17e6d74430db30d382ac899d4fc888afd5 (patch) | |
tree | dc1aaab64821edbb536ded9546ada071e7991c0c /vendor/golang.org/x/crypto/ssh/client_auth.go | |
parent | 3f5af4e80686cb732730bd27fe7fc1c64580c494 (diff) | |
parent | a457c5c92858f3fe608785293fb72934ed177ad5 (diff) | |
download | podman-b6765c17e6d74430db30d382ac899d4fc888afd5.tar.gz podman-b6765c17e6d74430db30d382ac899d4fc888afd5.tar.bz2 podman-b6765c17e6d74430db30d382ac899d4fc888afd5.zip |
Merge pull request #9071 from TomSweeneyRedHat/dev/tsweeney/bump_crypto2
Bump golang.org/x/crypto
Diffstat (limited to 'vendor/golang.org/x/crypto/ssh/client_auth.go')
-rw-r--r-- | vendor/golang.org/x/crypto/ssh/client_auth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/golang.org/x/crypto/ssh/client_auth.go b/vendor/golang.org/x/crypto/ssh/client_auth.go index f3265655e..c611aeb68 100644 --- a/vendor/golang.org/x/crypto/ssh/client_auth.go +++ b/vendor/golang.org/x/crypto/ssh/client_auth.go @@ -471,7 +471,7 @@ func (cb KeyboardInteractiveChallenge) auth(session []byte, user string, c packe } if len(answers) != len(prompts) { - return authFailure, nil, errors.New("ssh: not enough answers from keyboard-interactive callback") + return authFailure, nil, fmt.Errorf("ssh: incorrect number of answers from keyboard-interactive callback %d (expected %d)", len(answers), len(prompts)) } responseLength := 1 + 4 for _, a := range answers { |