diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-20 22:48:13 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-20 22:48:13 +0000 |
commit | 13fd378134d9667a682c4e8d812ba800931c82b4 (patch) | |
tree | 298c188e2afaabcdaafa9f2f406a139e29185e90 /fetchmail.c | |
parent | 28b1f7b5a5d85bbe853b158ce82989e50adb8a89 (diff) | |
download | fetchmail-13fd378134d9667a682c4e8d812ba800931c82b4.tar.gz fetchmail-13fd378134d9667a682c4e8d812ba800931c82b4.tar.bz2 fetchmail-13fd378134d9667a682c4e8d812ba800931c82b4.zip |
Error message fix.
svn path=/trunk/; revision=2196
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |