diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-28 18:18:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-28 18:18:00 +0000 |
commit | 5f4ca3c2d6db469677d06db286b16b9f3b84123c (patch) | |
tree | 8cdf1de1d808e77052ebfedfb81c68c4a469b079 /fetchmail.c | |
parent | 09006c25d399ff2080c0e8660d0d95ff3cd25455 (diff) | |
download | fetchmail-5f4ca3c2d6db469677d06db286b16b9f3b84123c.tar.gz fetchmail-5f4ca3c2d6db469677d06db286b16b9f3b84123c.tar.bz2 fetchmail-5f4ca3c2d6db469677d06db286b16b9f3b84123c.zip |
Change name of string-saver functions.
svn path=/trunk/; revision=584
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index c342f73a..59d9cf6e 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -353,7 +353,7 @@ int main (int argc, char **argv) querystatus = query_host(ctl); if (!check_only) - update_uid_lists(ctl); + update_str_lists(ctl); } } @@ -456,7 +456,7 @@ static int load_params(int argc, char **argv, int optind) * record from command line and defaults */ for (ctl = querylist; ctl; ctl = ctl->next) - if (uid_in_list(&ctl->servernames, argv[optind]) == 0) + if (str_in_list(&ctl->servernames, argv[optind]) == 0) goto foundit; ctl = hostalloc(&cmd_opts); @@ -505,7 +505,7 @@ static int load_params(int argc, char **argv, int optind) { ctl->uid = pw->pw_uid; /* for local delivery via MDA */ if (!ctl->localnames) /* for local delivery via SMTP */ - save_uid(&ctl->localnames, -1, user); + save_str(&ctl->localnames, -1, user); } #if !defined(HAVE_GETHOSTBYNAME) || !defined(HAVE_RES_SEARCH) |