summaryrefslogtreecommitdiff
path: root/sshconnect2.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index 25a3323f0..e146a4b26 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshconnect2.c,v 1.181 2010/04/10 02:10:56 djm Exp $ */ 1/* $OpenBSD: sshconnect2.c,v 1.182 2010/04/16 01:47:26 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2008 Damien Miller. All rights reserved. 4 * Copyright (c) 2008 Damien Miller. All rights reserved.
@@ -1140,8 +1140,11 @@ sign_and_send_pubkey(Authctxt *authctxt, Identity *id)
1140 u_int skip = 0; 1140 u_int skip = 0;
1141 int ret = -1; 1141 int ret = -1;
1142 int have_sig = 1; 1142 int have_sig = 1;
1143 char *fp;
1143 1144
1144 debug3("sign_and_send_pubkey"); 1145 fp = key_fingerprint(id->key, SSH_FP_MD5, SSH_FP_HEX);
1146 debug3("sign_and_send_pubkey: %s %s", key_type(id->key), fp);
1147 xfree(fp);
1145 1148
1146 if (key_to_blob(id->key, &blob, &bloblen) == 0) { 1149 if (key_to_blob(id->key, &blob, &bloblen) == 0) {
1147 /* we cannot handle this key */ 1150 /* we cannot handle this key */