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

(-)a/sshd.c (-1 / +1 lines)
Lines 1792-1798 main(int ac, char **av) Link Here
1792
		/* Find matching private key */
1792
		/* Find matching private key */
1793
		for (j = 0; j < options.num_host_key_files; j++) {
1793
		for (j = 0; j < options.num_host_key_files; j++) {
1794
			if (sshkey_equal_public(key,
1794
			if (sshkey_equal_public(key,
1795
			    sensitive_data.host_keys[j])) {
1795
			    sensitive_data.host_pubkeys[j])) {
1796
				sensitive_data.host_certificates[j] = key;
1796
				sensitive_data.host_certificates[j] = key;
1797
				break;
1797
				break;
1798
			}
1798
			}

Return to bug 3254