diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-11 01:53:49 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-11 01:53:49 +0000 |
commit | ab0ee3eb204cb8a6e85d88a877f7f5b2e06b3294 (patch) | |
tree | 350f21250553e934ca0e3901cc0a72f59d6da56a /pop2.c | |
parent | 87a4c35451c0bd0ac4a7bb557d81704f511f0149 (diff) | |
download | fetchmail-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.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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 |