diff options
author | Linus Nordberg <linus@nordberg.se> | 2011-03-03 10:43:09 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2011-03-03 10:43:09 +0100 |
commit | a951e8483abcc57f8ba42d6ad1bed56e7bb1e56a (patch) | |
tree | 47e7c0c2973b23928a24387d90c9b847d43c1090 | |
parent | 0db04b4576766f6860474bf04bdac23bceb65a80 (diff) |
Fix a typo in an error string.
-rw-r--r-- | tlscommon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tlscommon.c b/tlscommon.c index 6739f03..8a8c2b7 100644 --- a/tlscommon.c +++ b/tlscommon.c @@ -231,7 +231,7 @@ static SSL_CTX *tlscreatectx(uint8_t type, struct tls *conf) { if (sslversion < 0x00908100L || (sslversion >= 0x10000000L && sslversion < 0x10000020L)) { - debug(DBG_WARN, "%s: %s seems to be of a version with a " + debug(DBG_WARN, "%s: %s seems to be of a version with a " "certain security critical bug (fixed in OpenSSL 0.9.8p and " "1.0.0b). Disabling OpenSSL session caching for context %p.", __func__, SSLeay_version(SSLEAY_VERSION), ctx); |