summaryrefslogtreecommitdiffstats
path: root/sshconnect2.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2020-01-21 05:56:27 +0000
committerDamien Miller <djm@mindrot.org>2020-01-21 18:09:09 +1100
commit881aded0389d999375f926051491a944c6d8752b (patch)
tree06bb1db828504857e349dd12514dfbd09b7b3136 /sshconnect2.c
parentb715fdc71bbd009d0caff691ab3fc04903c4aee8 (diff)
upstream: a little more verbosity in sign_and_send_pubkey() debug
messages OpenBSD-Commit-ID: 6da47a0e6373f6683006f49bc2a516d197655508
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index d658ed07..6f9ee42c 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect2.c,v 1.314 2019/11/15 02:37:24 djm Exp $ */
+/* $OpenBSD: sshconnect2.c,v 1.315 2020/01/21 05:56:27 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Damien Miller. All rights reserved.
@@ -1311,7 +1311,7 @@ sign_and_send_pubkey(struct ssh *ssh, Identity *id)
error("%s: no mutual signature supported", __func__);
goto out;
}
- debug3("%s: signing using %s", __func__, alg);
+ debug3("%s: signing using %s %s", __func__, alg, fp);
sshbuf_free(b);
if ((b = sshbuf_new()) == NULL)
@@ -1358,7 +1358,9 @@ sign_and_send_pubkey(struct ssh *ssh, Identity *id)
loc, sshkey_type(id->key), fp);
continue;
}
- error("%s: signing failed: %s", __func__, ssh_err(r));
+ error("%s: signing failed for %s \"%s\"%s: %s", __func__,
+ sshkey_type(sign_id->key), sign_id->filename,
+ id->agent_fd != -1 ? " from agent" : "", ssh_err(r));
goto out;
}
if (slen == 0 || signature == NULL) /* shouldn't happen */