From ecffe0455d9ed82fa5b41737c80b36a03e342fb9 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 20 Sep 1999 19:51:19 +0000 Subject: Correct return value for bad fuile permissions. svn path=/trunk/; revision=2567 --- fetchmail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fetchmail.c') 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))) { -- cgit v1.2.3