aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-06-03 05:47:15 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-06-03 05:47:15 +0000
commitf66461adb053fa162312ef19c63162792b24e554 (patch)
tree22e11711eb809409b5cf5ad6056417b8d1e8c02e /fetchmail.c
parentf10ccf06ddd9c600d3e440c84a2b7fc98d649962 (diff)
downloadfetchmail-f66461adb053fa162312ef19c63162792b24e554.tar.gz
fetchmail-f66461adb053fa162312ef19c63162792b24e554.tar.bz2
fetchmail-f66461adb053fa162312ef19c63162792b24e554.zip
idfile processing patch.
svn path=/trunk/; revision=1876
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c17
1 files changed, 9 insertions, 8 deletions
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);
}