diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2013-06-21 00:34:50 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2013-06-21 00:34:50 +0000 |
commit | 2a586b5423b654288ad0b2b8f3b0a8188ec66471 (patch) | |
tree | 0a9a8b062f878911434e7383f213daed08109615 /usr.bin/ssh/auth-rsa.c | |
parent | 07a861bf4089b3b357a0dfd968099a685d0f25e7 (diff) |
for hostbased authentication, print the client host and user on
the auth success/failure line; bz#2064, ok dtucker@
Diffstat (limited to 'usr.bin/ssh/auth-rsa.c')
-rw-r--r-- | usr.bin/ssh/auth-rsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth-rsa.c b/usr.bin/ssh/auth-rsa.c index 9c96eada8d9..f7f8513311d 100644 --- a/usr.bin/ssh/auth-rsa.c +++ b/usr.bin/ssh/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 @@ -329,7 +329,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); |