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

Collapse All | Expand All

(-)ssh-keyscan.c (-1 / +2 lines)
Lines 281-287 keyprint(con *c, Key *key) Link Here
281
		fatal("host_hash failed");
281
		fatal("host_hash failed");
282
282
283
	fprintf(stdout, "%s ", host);
283
	fprintf(stdout, "%s ", host);
284
	key_write(key, stdout);
284
	if (!key_write(key, stdout))
285
		fatal("failed to write key");
285
	fputs("\n", stdout);
286
	fputs("\n", stdout);
286
}
287
}
287
288

Return to bug 2163