aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-11 01:53:49 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-11 01:53:49 +0000
commitab0ee3eb204cb8a6e85d88a877f7f5b2e06b3294 (patch)
tree350f21250553e934ca0e3901cc0a72f59d6da56a /pop2.c
parent87a4c35451c0bd0ac4a7bb557d81704f511f0149 (diff)
downloadfetchmail-ab0ee3eb204cb8a6e85d88a877f7f5b2e06b3294.tar.gz
fetchmail-ab0ee3eb204cb8a6e85d88a877f7f5b2e06b3294.tar.bz2
fetchmail-ab0ee3eb204cb8a6e85d88a877f7f5b2e06b3294.zip
Cosmetic change.
svn path=/trunk/; revision=77
Diffstat (limited to 'pop2.c')
-rw-r--r--pop2.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/pop2.c b/pop2.c
index 50c619c9..a5ca1cd0 100644
--- a/pop2.c
+++ b/pop2.c
@@ -73,15 +73,19 @@ struct hostrec *queryctl;
/* check for unsupported options */
if (linelimit) {
- fprintf(stderr,"Option --limit is not supported in POP2\n");
+ fprintf(stderr,"Option --limit is not supported with POP2\n");
return(PS_SYNTAX);
}
else if (queryctl->flush) {
- fprintf(stderr,"Option --flush is not supported in POP2\n");
+ fprintf(stderr,"Option --flush is not supported with POP2\n");
return(PS_SYNTAX);
}
else if (queryctl->fetchall) {
- fprintf(stderr,"Option --all is not supported in POP2\n");
+ fprintf(stderr,"Option --all is not supported with POP2\n");
+ return(PS_SYNTAX);
+ }
+ else if (queryctl->smtphost[0]) {
+ fprintf(stderr,"Option --smtphost is not supported with POP2\n");
return(PS_SYNTAX);
}
else