diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-03-30 13:31:08 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-03-30 13:35:47 +0200 |
commit | dc2f8c9b3fa061737a952888ad3724bdc0e5cc3a (patch) | |
tree | a66a9880aaf2f261480c261adabfe09d3cb48715 /socket.c | |
parent | 12302c52d349be398adba359d6a505817206d1cd (diff) | |
download | fetchmail-dc2f8c9b3fa061737a952888ad3724bdc0e5cc3a.tar.gz fetchmail-dc2f8c9b3fa061737a952888ad3724bdc0e5cc3a.tar.bz2 fetchmail-dc2f8c9b3fa061737a952888ad3724bdc0e5cc3a.zip |
socket.c: add reference to README.SSL in error message
and fix a typo in README.SSL. The reference will be printed if there is
no trust anchor.
Fixes #4 (Gitlab issue).
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -840,7 +840,8 @@ static int SSL_verify_callback(int ok_return, X509_STORE_CTX *ctx, int strict) report(stderr, GT_( "This could mean that the root CA's signing certificate is not in the " "trusted CA certificate location, or that c_rehash needs to be run " "on the certificate directory. For details, please " - "see the documentation of --sslcertpath and --sslcertfile in the manual page.\n")); + "see the documentation of --sslcertpath and --sslcertfile in the manual page. " + "See README.SSL for details.\n")); break; default: break; |