diff options
author | Damien Miller <djm@mindrot.org> | 2000-04-30 02:00:53 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-04-30 02:00:53 +0200 |
commit | bd483e76909905f28d1604125f70c7cf8271f66e (patch) | |
tree | 4363a925d1f530b444c5726601ecf9efc684c218 /auth-rsa.c | |
parent | clarify requirement for egd (diff) | |
download | openssh-bd483e76909905f28d1604125f70c7cf8271f66e.tar.xz openssh-bd483e76909905f28d1604125f70c7cf8271f66e.zip |
- More OpenBSD updates:
[session.c]
- don't call chan_write_failed() if we are not writing
[auth-rsa.c auth1.c authfd.c hostfile.c ssh-agent.c]
- keysize warnings error() -> log()
Diffstat (limited to 'auth-rsa.c')
-rw-r--r-- | auth-rsa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/auth-rsa.c b/auth-rsa.c index c61eab29a..22e3f01f3 100644 --- a/auth-rsa.c +++ b/auth-rsa.c @@ -16,7 +16,7 @@ */ #include "includes.h" -RCSID("$Id: auth-rsa.c,v 1.18 2000/04/29 13:57:09 damien Exp $"); +RCSID("$Id: auth-rsa.c,v 1.19 2000/04/30 00:00:53 damien Exp $"); #include "rsa.h" #include "packet.h" @@ -256,7 +256,6 @@ auth_rsa(struct passwd *pw, BIGNUM *client_n) /* We have found the desired key. */ - /* Perform the challenge-response dialog for this key. */ if (!auth_rsa_challenge_dialog(pk)) { /* Wrong response. */ |