From 13fd378134d9667a682c4e8d812ba800931c82b4 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 20 Nov 1998 22:48:13 +0000 Subject: Error message fix. svn path=/trunk/; revision=2196 --- fetchmail.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fetchmail.c') diff --git a/fetchmail.c b/fetchmail.c index 499a4ea5..61aef1aa 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1051,14 +1051,14 @@ static int load_params(int argc, char **argv, int optind) if (ctl->server.port < 0) { (void) fprintf(stderr, - "%s configuration invalid, port number cannot be negative", + "%s configuration invalid, port number cannot be negative\n", ctl->server.pollname); exit(PS_SYNTAX); } if (ctl->server.protocol == P_RPOP && ctl->server.port >= 1024) { (void) fprintf(stderr, - "%s configuration invalid, RPOP requires a privileged port", + "%s configuration invalid, RPOP requires a privileged port\n", ctl->server.pollname); exit(PS_SYNTAX); } @@ -1079,7 +1079,7 @@ static int load_params(int argc, char **argv, int optind) #endif /* INET6 */ { (void) fprintf(stderr, - "%s configuration invalid, LMTP can't use SMTP port", + "%s configuration invalid, LMTP can't use SMTP port\n", ctl->server.pollname); exit(PS_SYNTAX); } -- cgit v1.2.3