aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-11-20 22:52:25 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-11-20 22:52:25 +0000
commit94f60dd3417a6cad1001133786927099b3dd7b7e (patch)
tree43ef05f93d39a37048e36ac0ca3e12bd70e21fb8
parent8cc068b15f9030a31cd4d974acc275a0c3771ccc (diff)
downloadfetchmail-94f60dd3417a6cad1001133786927099b3dd7b7e.tar.gz
fetchmail-94f60dd3417a6cad1001133786927099b3dd7b7e.tar.bz2
fetchmail-94f60dd3417a6cad1001133786927099b3dd7b7e.zip
Fix the sanity check.
svn path=/trunk/; revision=2198
-rw-r--r--fetchmail.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 0c504bd8..55fd84cb 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1076,12 +1076,11 @@ static int load_params(int argc, char **argv, int optind)
#else
(atoi(++cp) == SMTP_PORT))
#endif /* INET6 */
- {
- (void) fprintf(stderr,
- "%s configuration invalid, LMTP can't use default SMTP port\n",
- ctl->server.pollname);
- exit(PS_SYNTAX);
- }
+ {
+ (void) fprintf(stderr,
+ "%s configuration invalid, LMTP can't use default SMTP port\n",
+ ctl->server.pollname);
+ exit(PS_SYNTAX);
}
}
}