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

Collapse All | Expand All

(-)sshconnect2.c.orig (-1 / +1 lines)
Lines 448-454 Link Here
448
	xfree(fp);
448
	xfree(fp);
449
449
450
	TAILQ_FOREACH(id, &authctxt->keys, next) {
450
	TAILQ_FOREACH(id, &authctxt->keys, next) {
451
		if (key_equal(key, id->key)) {
451
		if ( id->tried && key_equal(key, id->key)) {
452
			sent = sign_and_send_pubkey(authctxt, id);
452
			sent = sign_and_send_pubkey(authctxt, id);
453
			break;
453
			break;
454
		}
454
		}

Return to bug 684