diff options
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) |