summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_err2.c
diff options
context:
space:
mode:
authorjsing <>2014-04-14 13:10:35 +0000
committerjsing <>2014-04-14 13:10:35 +0000
commit374c0f14ad655e9aa4f93578bb2e894015c80b62 (patch)
tree7ee2ebf15684ee99e649ef8b3b2dd289398f6325 /src/lib/libssl/ssl_err2.c
parent8c309153fa39ff025efcc1bb32c6b83fcdbacc1d (diff)
downloadopenbsd-374c0f14ad655e9aa4f93578bb2e894015c80b62.tar.gz
openbsd-374c0f14ad655e9aa4f93578bb2e894015c80b62.tar.bz2
openbsd-374c0f14ad655e9aa4f93578bb2e894015c80b62.zip
First pass at applying KNF to the OpenSSL code, which almost makes it
readable. This pass is whitespace only and can readily be verified using tr and md5.
Diffstat (limited to 'src/lib/libssl/ssl_err2.c')
-rw-r--r--src/lib/libssl/ssl_err2.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_err2.c b/src/lib/libssl/ssl_err2.c
index ea95a5f983..cd781d38aa 100644
--- a/src/lib/libssl/ssl_err2.c
+++ b/src/lib/libssl/ssl_err2.c
@@ -60,11 +60,12 @@
60#include <openssl/err.h> 60#include <openssl/err.h>
61#include <openssl/ssl.h> 61#include <openssl/ssl.h>
62 62
63void SSL_load_error_strings(void) 63void
64 { 64SSL_load_error_strings(void)
65{
65#ifndef OPENSSL_NO_ERR 66#ifndef OPENSSL_NO_ERR
66 ERR_load_crypto_strings(); 67 ERR_load_crypto_strings();
67 ERR_load_SSL_strings(); 68 ERR_load_SSL_strings();
68#endif 69#endif
69 } 70}
70 71