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

(-)ssh-keygen.c (-1 / +1 lines)
Lines 1286-1292 do_print_resource_record(struct passwd * Link Here
1286
	struct stat st;
1286
	struct stat st;
1287
1287
1288
	if (fname == NULL)
1288
	if (fname == NULL)
1289
		ask_filename(pw, "Enter file in which the key is");
1289
		fatal("%s: no filename", __func__);
1290
	if (stat(fname, &st) < 0) {
1290
	if (stat(fname, &st) < 0) {
1291
		if (errno == ENOENT)
1291
		if (errno == ENOENT)
1292
			return 0;
1292
			return 0;

Return to bug 2127