From e644052b38ac03a5683f6ba48554dfb4cfe78c9c Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 13 Jan 1997 21:24:27 +0000 Subject: Gather all server data into a restorable structure. svn path=/trunk/; revision=754 --- uid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'uid.c') diff --git a/uid.c b/uid.c index f4e81a9f..32aa0b36 100644 --- a/uid.c +++ b/uid.c @@ -84,7 +84,7 @@ void initialize_saved_lists(struct query *hostlist, const char *idfile) { for (ctl = hostlist; ctl; ctl = ctl->next) { - if (strcmp(host, ctl->servernames->id) == 0 + if (strcmp(host, ctl->server.names->id) == 0 && strcmp(user, ctl->remotename) == 0) { save_str(&ctl->oldsaved, -1, id); @@ -256,7 +256,7 @@ void write_saved_lists(struct query *hostlist, const char *idfile) for (ctl = hostlist; ctl; ctl = ctl->next) { for (idp = ctl->oldsaved; idp; idp = idp->next) fprintf(tmpfp, "%s@%s %s\n", - ctl->remotename, ctl->servernames->id, idp->id); + ctl->remotename, ctl->server.names->id, idp->id); } for (idp = scratchlist; idp; idp = idp->next) fputs(idp->id, tmpfp); -- cgit v1.2.3