diff options
author | Damien Miller <djm@mindrot.org> | 2013-07-18 08:10:09 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-07-18 08:10:09 +0200 |
commit | 20bdcd72365e8b3d51261993928cc47c5f0d7c8a (patch) | |
tree | db4f44ba0f86b271a9493ce0d866941f0ac5a953 /auth-rsa.c | |
parent | - markus@cvs.openbsd.org 2013/06/20 19:15:06 (diff) | |
download | openssh-20bdcd72365e8b3d51261993928cc47c5f0d7c8a.tar.xz openssh-20bdcd72365e8b3d51261993928cc47c5f0d7c8a.zip |
- djm@cvs.openbsd.org 2013/06/21 00:34:49
[auth-rsa.c auth.h auth2-hostbased.c auth2-pubkey.c monitor.c]
for hostbased authentication, print the client host and user on
the auth success/failure line; bz#2064, ok dtucker@
Diffstat (limited to 'auth-rsa.c')
-rw-r--r-- | auth-rsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth-rsa.c b/auth-rsa.c index 92f0ad75c..b7a03fdc4 100644 --- a/auth-rsa.c +++ b/auth-rsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-rsa.c,v 1.83 2013/05/19 02:42:42 djm Exp $ */ +/* $OpenBSD: auth-rsa.c,v 1.84 2013/06/21 00:34:49 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -332,7 +332,7 @@ auth_rsa(Authctxt *authctxt, BIGNUM *client_n) * options; this will be reset if the options cause the * authentication to be rejected. */ - pubkey_auth_info(authctxt, key); + pubkey_auth_info(authctxt, key, NULL); packet_send_debug("RSA authentication accepted."); return (1); |