View | Details | Raw Unified | Return to bug 3141
Collapse All | Expand All

(-)a/sshconnect2.c (-1 / +1 lines)
Lines 1664-1670 pubkey_prepare(Authctxt *authctxt) Link Here
1664
		found = 0;
1664
		found = 0;
1665
		TAILQ_FOREACH(id2, &files, next) {
1665
		TAILQ_FOREACH(id2, &files, next) {
1666
			if (id2->key == NULL ||
1666
			if (id2->key == NULL ||
1667
			    (id2->key->flags & SSHKEY_FLAG_EXT) == 0)
1667
			    (id2->key->flags & SSHKEY_FLAG_EXT) != 0)
1668
				continue;
1668
				continue;
1669
			if (sshkey_equal(id->key, id2->key)) {
1669
			if (sshkey_equal(id->key, id2->key)) {
1670
				TAILQ_REMOVE(&files, id, next);
1670
				TAILQ_REMOVE(&files, id, next);

Return to bug 3141