View | Details | Raw Unified | Return to bug 2550 | Differences between
and this patch

Collapse All | Expand All

(-)a/sshconnect2.c (-5 / +1 lines)
Lines 1112-1123 sign_and_send_pubkey(Authctxt *authctxt, Identity *id) Link Here
1112
			    "certificate", __func__, id->filename,
1112
			    "certificate", __func__, id->filename,
1113
			    id->agent_fd != -1 ? " from agent" : "");
1113
			    id->agent_fd != -1 ? " from agent" : "");
1114
		} else {
1114
		} else {
1115
			/* XXX maybe verbose/error? */
1115
			debug("%s: no separate private key for certificate "
1116
			debug("%s: no private key for certificate "
1117
			    "\"%s\"", __func__, id->filename);
1116
			    "\"%s\"", __func__, id->filename);
1118
			free(blob);
1119
			buffer_free(&b);
1120
			return 0;
1121
		}
1117
		}
1122
	}
1118
	}
1123
1119

Return to bug 2550