aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/crypto/ssh/client_auth.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-24 16:15:12 +0100
committerGitHub <noreply@github.com>2021-01-24 16:15:12 +0100
commitb6765c17e6d74430db30d382ac899d4fc888afd5 (patch)
treedc1aaab64821edbb536ded9546ada071e7991c0c /vendor/golang.org/x/crypto/ssh/client_auth.go
parent3f5af4e80686cb732730bd27fe7fc1c64580c494 (diff)
parenta457c5c92858f3fe608785293fb72934ed177ad5 (diff)
downloadpodman-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.go2
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 {