upstream commit

show in debug output which hostkeys are being tried when
 attempting hostbased auth; patch from Iain Morgan
This commit is contained in:
djm@openbsd.org 2014-12-11 05:13:28 +00:00 committed by Damien Miller
parent da0277e371
commit 17bf3d81e0

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sshconnect2.c,v 1.210 2014/07/15 15:54:14 millert Exp $ */ /* $OpenBSD: sshconnect2.c,v 1.211 2014/12/11 05:13:28 djm Exp $ */
/* /*
* Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Damien Miller. All rights reserved. * Copyright (c) 2008 Damien Miller. All rights reserved.
@ -1503,10 +1503,14 @@ userauth_hostbased(Authctxt *authctxt)
debug("No more client hostkeys for hostbased authentication."); debug("No more client hostkeys for hostbased authentication.");
return 0; return 0;
} }
debug("%s: trying hostkey type %s", __func__, key_type(private));
if (key_to_blob(private, &blob, &blen) == 0) { if (key_to_blob(private, &blob, &blen) == 0) {
key_free(private); key_free(private);
return 0; return 0;
} }
/* figure out a name for the client host */ /* figure out a name for the client host */
p = get_local_name(packet_get_connection_in()); p = get_local_name(packet_get_connection_in());
if (p == NULL) { if (p == NULL) {