diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2016-01-30 13:36:43 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2016-01-30 13:36:43 +0100 |
commit | b26de571722e81d4801884194fb6a533baaab4c1 (patch) | |
tree | 5f281629de0d6c728711b8329e7d2b96c8918944 /socket.c | |
parent | 688adb00d622b65f7115644740f452c212c7e078 (diff) | |
download | fetchmail-b26de571722e81d4801884194fb6a533baaab4c1.tar.gz fetchmail-b26de571722e81d4801884194fb6a533baaab4c1.tar.bz2 fetchmail-b26de571722e81d4801884194fb6a533baaab4c1.zip |
Avoid another C99-style comment.
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -978,9 +978,8 @@ int SSLOpen(int sock, char *mycert, char *mykey, const char *myproto, int certck } /* do not combine into an else { } as myproto may be nulled above! */ if (!myproto) { - // SSLv23 is a misnomer and will in fact use the best - // available protocol, subject to SSL_OP_NO* - // constraints. + /* SSLv23 is a misnomer and will in fact use the best + available protocol, subject to SSL_OP_NO* constraints. */ _ctx[sock] = SSL_CTX_new(SSLv23_client_method()); } if(_ctx[sock] == NULL) { |