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

Collapse All | Expand All

(-)a/sshconnect2.c (-1 / +1 lines)
Lines 1101-1107 sign_and_send_pubkey(Authctxt *authctxt, Identity *id) Link Here
1101
		matched = 0;
1101
		matched = 0;
1102
		TAILQ_FOREACH(private_id, &authctxt->keys, next) {
1102
		TAILQ_FOREACH(private_id, &authctxt->keys, next) {
1103
			if (sshkey_equal_public(id->key, private_id->key) &&
1103
			if (sshkey_equal_public(id->key, private_id->key) &&
1104
			    id->key->type != private_id->key->type) {
1104
			    id != private_id) {
1105
				id = private_id;
1105
				id = private_id;
1106
				matched = 1;
1106
				matched = 1;
1107
				break;
1107
				break;

Return to bug 2550