diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-10-18 11:26:52 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-10-18 11:26:52 +0000 |
commit | c6667a5a2aa4895596a76fc0aeb68f37a322bc44 (patch) | |
tree | 8e1e0c18cf3828076c65fa1b7d8eaf67df520b57 /pop3.c | |
parent | 877247e077e2702c2581f93140a31a083d7d1233 (diff) | |
download | fetchmail-c6667a5a2aa4895596a76fc0aeb68f37a322bc44.tar.gz fetchmail-c6667a5a2aa4895596a76fc0aeb68f37a322bc44.tar.bz2 fetchmail-c6667a5a2aa4895596a76fc0aeb68f37a322bc44.zip |
Sunil's patch to guard SSL use.
svn path=/trunk/; revision=3740
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -247,7 +247,9 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting) } #ifdef SSL_ENABLE - if (has_ssl && !ctl->use_ssl) + if (has_ssl + && !ctl->use_ssl + && (ctl->server.authenticate == A_ANY)) { char *realhost; |