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

(-)sshconnect2.c (-1 / +1 lines)
Lines 1409-1415 pubkey_prepare(Authctxt *authctxt) Link Here
1409
		/* If IdentitiesOnly set and key not found then don't use it */
1409
		/* If IdentitiesOnly set and key not found then don't use it */
1410
		if (!found && options.identities_only) {
1410
		if (!found && options.identities_only) {
1411
			TAILQ_REMOVE(&files, id, next);
1411
			TAILQ_REMOVE(&files, id, next);
1412
			bzero(id, sizeof(id));
1412
			bzero(id, sizeof(*id));
1413
			free(id);
1413
			free(id);
1414
		}
1414
		}
1415
	}
1415
	}

Return to bug 2100