diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-09-23 03:42:52 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-09-23 03:42:52 +0000 |
commit | 1e33dd8561d58aa38c080c0d419db3d6e33a3c7b (patch) | |
tree | 8b69c05de91c393c28bbe9e1d0a00e739c083d1f | |
parent | df298d8a3735f56c5fa2c379991a6cf7f953348b (diff) | |
download | fetchmail-1e33dd8561d58aa38c080c0d419db3d6e33a3c7b.tar.gz fetchmail-1e33dd8561d58aa38c080c0d419db3d6e33a3c7b.tar.bz2 fetchmail-1e33dd8561d58aa38c080c0d419db3d6e33a3c7b.zip |
Andras Korn's bug.
svn path=/trunk/; revision=3467
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | fetchmail.c | 5 |
2 files changed, 8 insertions, 0 deletions
@@ -8,6 +8,9 @@ * Make sure suffix checks on akalists are properly caseblinded. * All warning mail now has a generated date stamp. * getopt.c and getopt1.c removed due to license incompatibility with OpenSSL. +* End of poll cycle is now logged. +* Sanity check now rejects SSL option if SSL support is not compiled in + (resolves Debian bug #109796). fetchmail-5.9.0 (Sun Aug 12 23:52:16 EDT 2001), 21062 lines: diff --git a/fetchmail.c b/fetchmail.c index 70929d99..b533b1c2 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1046,6 +1046,11 @@ static int load_params(int argc, char **argv, int optind) DEFAULT(ctl->sslcertck, FALSE); #endif DEFAULT(ctl->server.checkalias, FALSE); + if (ctl->use_ssl) + { + report(stderr, _("SSL support is not compiled in.\n")); + exit(PS_SYNTAX); + } #undef DEFAULT /* |