diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-09-20 19:51:19 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-09-20 19:51:19 +0000 |
commit | ecffe0455d9ed82fa5b41737c80b36a03e342fb9 (patch) | |
tree | 3068d8c8a7b11b669b94d1bbb2cfc1202e342133 /fetchmail.c | |
parent | eb1b8fb6779d71fbe8c23156d4773e56f7d2fe67 (diff) | |
download | fetchmail-ecffe0455d9ed82fa5b41737c80b36a03e342fb9.tar.gz fetchmail-ecffe0455d9ed82fa5b41737c80b36a03e342fb9.tar.bz2 fetchmail-ecffe0455d9ed82fa5b41737c80b36a03e342fb9.zip |
Correct return value for bad fuile permissions.
svn path=/trunk/; revision=2567
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index b8e950ef..80a15563 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -910,8 +910,8 @@ static int load_params(int argc, char **argv, int optind) def_opts.listener = SMTP_MODE; /* this builds the host list */ - if (prc_parse_file(rcfile, !versioninfo) != 0) - exit(PS_SYNTAX); + if ((st = prc_parse_file(rcfile, !versioninfo)) != 0) + exit(st); if ((implicitmode = (optind >= argc))) { |