diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-04-10 12:53:20 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-04-10 12:53:20 +0000 |
commit | 1c2c80894897c28052939e8d6fe357694712debd (patch) | |
tree | faacf0cd53f2177405e649175096920983903655 /socket.c | |
parent | dc282e1fe0bd5b8ae6a05cef306fd65c7a881ebc (diff) | |
download | fetchmail-1c2c80894897c28052939e8d6fe357694712debd.tar.gz fetchmail-1c2c80894897c28052939e8d6fe357694712debd.tar.bz2 fetchmail-1c2c80894897c28052939e8d6fe357694712debd.zip |
Cleanup patch.
svn path=/trunk/; revision=3288
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -681,7 +681,7 @@ int SSL_verify_callback( int ok_return, X509_STORE_CTX *ctx ) report(stdout, _("Issuer Organization: %s\n"), cbuf ); } else { if (outlevel == O_VERBOSE) - report(stdout, _("Unknown Organization\n"), cbuf ); + report(stdout, _("Unknown Organization\n")); } if( ( str_ptr = strstr( ibuf, "/CN=" ) ) ) { str_ptr += 4; @@ -693,7 +693,7 @@ int SSL_verify_callback( int ok_return, X509_STORE_CTX *ctx ) report(stdout, _("Issuer CommonName: %s\n"), cbuf ); } else { if (outlevel == O_VERBOSE) - report(stdout, _("Unknown Issuer CommonName\n"), cbuf ); + report(stdout, _("Unknown Issuer CommonName\n")); } if( ( str_ptr = strstr( buf, "/CN=" ) ) ) { str_ptr += 4; @@ -724,7 +724,7 @@ int SSL_verify_callback( int ok_return, X509_STORE_CTX *ctx ) } } else { if (outlevel == O_VERBOSE) - report(stdout, _("Unknown Server CommonName\n"), cbuf ); + report(stdout, _("Unknown Server CommonName\n")); } } |