aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c
index fb1e6015..3619fd9b 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -329,9 +329,10 @@ int main(int argc, char **argv)
if (system("uname -a")) { /* NOOP to quench GCC complaint */ }
}
- /* avoid parsing the config file if all we're doing is killing a daemon */
- if (!quitonly)
- implicitmode = load_params(argc, argv, optind);
+ /* We used to avoid parsing the config file if all we're doing is killing
+ * a daemon, under if (!quitonly) but since the pidfile can be configured
+ * in the rcfile, this is no longer viable. */
+ implicitmode = load_params(argc, argv, optind);
if (run.logfile) {
/* nodetach -> turn off logfile option */