summaryrefslogtreecommitdiffstats
path: root/src/uscxml/server/HTTPServer.cpp
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-06-02 12:54:23 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-06-02 12:54:23 (GMT)
commitd1404b669a00a6cff2ac35f09d0222c1d9ab4bff (patch)
tree3e6b6201089104f37816d7ad14b608b859178a61 /src/uscxml/server/HTTPServer.cpp
parent548ca64879a3831abe9102eedad87de0326c6099 (diff)
downloaduscxml-d1404b669a00a6cff2ac35f09d0222c1d9ab4bff.zip
uscxml-d1404b669a00a6cff2ac35f09d0222c1d9ab4bff.tar.gz
uscxml-d1404b669a00a6cff2ac35f09d0222c1d9ab4bff.tar.bz2
Added UTF8 tests
Diffstat (limited to 'src/uscxml/server/HTTPServer.cpp')
-rw-r--r--src/uscxml/server/HTTPServer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/server/HTTPServer.cpp b/src/uscxml/server/HTTPServer.cpp
index e9a1039..aa43002 100644
--- a/src/uscxml/server/HTTPServer.cpp
+++ b/src/uscxml/server/HTTPServer.cpp
@@ -129,7 +129,7 @@ HTTPServer::HTTPServer(unsigned short port, unsigned short wsPort, SSLConfig* ss
SSL_library_init ();
SSL_load_error_strings ();
- ERR_load_crypto_strings();
+ ERR_load_crypto_strings();
OpenSSL_add_all_algorithms ();
SSL_CTX *ctx = SSL_CTX_new (SSLv23_server_method ());
@@ -144,7 +144,7 @@ HTTPServer::HTTPServer(unsigned short port, unsigned short wsPort, SSLConfig* ss
goto FAIL_SSL_SETUP;
}
if (1 != SSL_CTX_set_tmp_ecdh (ctx, ecdh)) {
- LOGD(USCXML_ERROR) << ("SSL_CTX_set_tmp_ecdh") << ERR_error_string(ERR_get_error(), NULL);
+ LOGD(USCXML_ERROR) << ("SSL_CTX_set_tmp_ecdh") << ERR_error_string(ERR_get_error(), NULL);
goto FAIL_SSL_SETUP;
}