diff options
author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2012-07-16 15:43:31 +0000 |
---|---|---|
committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2012-07-16 15:43:31 +0000 |
commit | 0dca5f705fe204a1cd6d420ff6fe841c624eb31e (patch) | |
tree | 598c7f69dfbc0f07741f13936e6aaad78cb6b5e2 /usr/src/cmd/ssh | |
parent | 84994e8c736b6cabac683f28a3e1811f55a525e4 (diff) | |
download | illumos-joyent-0dca5f705fe204a1cd6d420ff6fe841c624eb31e.tar.gz |
OS-1386 SSH key fingerprint not deposited in the auth logfile.
Diffstat (limited to 'usr/src/cmd/ssh')
-rw-r--r-- | usr/src/cmd/ssh/sshd/auth2-pubkey.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr/src/cmd/ssh/sshd/auth2-pubkey.c b/usr/src/cmd/ssh/sshd/auth2-pubkey.c index 9fc91106b8..c1c5f540e4 100644 --- a/usr/src/cmd/ssh/sshd/auth2-pubkey.c +++ b/usr/src/cmd/ssh/sshd/auth2-pubkey.c @@ -397,6 +397,9 @@ out: handle = NULL; } + if (success) + verbose("Found matching %s key: %s", key_type(key), fp); + if (fp != NULL) { xfree(fp); fp = NULL; |