aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 61aef1aa..0c504bd8 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1070,16 +1070,15 @@ static int load_params(int argc, char **argv, int optind)
{
char *cp;
- if ((cp = strrchr(idp->id, '/')))
- {
+ if (!(cp = strrchr(idp->id, '/')) ||
#ifdef INET6
- if (strcmp(++cp, SMTP_PORT) == 0)
+ (strcmp(++cp, SMTP_PORT) == 0))
#else
- if (atoi(++cp) == SMTP_PORT)
+ (atoi(++cp) == SMTP_PORT))
#endif /* INET6 */
{
(void) fprintf(stderr,
- "%s configuration invalid, LMTP can't use SMTP port\n",
+ "%s configuration invalid, LMTP can't use default SMTP port\n",
ctl->server.pollname);
exit(PS_SYNTAX);
}