Diff

Differences From Artifact [0825c71594]:

To Artifact [097722fc0d]:


303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
	SAVEABLE(1);
	cfg->sshprot = 3;	       /* ssh protocol 2 only */
    }

    if (!strcmp(p, "-i")) {
	RETURN(2);
	SAVEABLE(1);
	strncpy(cfg->keyfile, value, sizeof(cfg->keyfile));
	cfg->keyfile[sizeof(cfg->keyfile)-1] = '\0';
    }

    return ret;			       /* unrecognised */
}

void cmdline_run_saved(Config *cfg)
{







<
|







303
304
305
306
307
308
309

310
311
312
313
314
315
316
317
	SAVEABLE(1);
	cfg->sshprot = 3;	       /* ssh protocol 2 only */
    }

    if (!strcmp(p, "-i")) {
	RETURN(2);
	SAVEABLE(1);

	cfg->keyfile = filename_from_str(value);
    }

    return ret;			       /* unrecognised */
}

void cmdline_run_saved(Config *cfg)
{