From f66461adb053fa162312ef19c63162792b24e554 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 3 Jun 1998 05:47:15 +0000 Subject: idfile processing patch. svn path=/trunk/; revision=1876 --- fetchmail.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'fetchmail.c') diff --git a/fetchmail.c b/fetchmail.c index f6f24177..47a3a63d 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -875,14 +875,6 @@ static int load_params(int argc, char **argv, int optind) } } - /* initialize UID handling */ - if (!versioninfo && (st = prc_filecheck(run.idfile, !versioninfo)) != 0) - exit(st); -#ifdef POP3_ENABLE - else - initialize_saved_lists(querylist, run.idfile); -#endif /* POP3_ENABLE */ - /* here's where we override globals */ if (cmd_run.logfile) run.logfile = cmd_run.logfile; @@ -898,6 +890,15 @@ static int load_params(int argc, char **argv, int optind) /* check and daemon options are not compatible */ if (check_only && run.poll_interval) run.poll_interval = 0; + +#ifdef POP3_ENABLE + /* initialize UID handling */ + if (!versioninfo && (st = prc_filecheck(run.idfile, !versioninfo)) != 0) + exit(st); + else + initialize_saved_lists(querylist, run.idfile); +#endif /* POP3_ENABLE */ + return(implicitmode); } -- cgit v1.2.3