Commit 19df88571b8c06f0b2077466d88ea8529da6f123

Authored by Perry Werneck
1 parent 775de729
Exists in master and in 1 other branch develop

Removing debug exit()

Showing 1 changed file with 1 additions and 2 deletions   Show diff stats
src/network_modules/openssl/context.c
... ... @@ -156,7 +156,6 @@ SSL_CTX * lib3270_openssl_get_context(H3270 *hSession) {
156 156 return context;
157 157  
158 158 SSL_load_error_strings();
159   - SSL_library_init();
160 159  
161 160 #if !defined(OPENSSL_FIPS)
162 161  
... ... @@ -220,7 +219,7 @@ SSL_CTX * lib3270_openssl_get_context(H3270 *hSession) {
220 219  
221 220 #endif
222 221  
223   - exit(-1);
  222 + SSL_library_init();
224 223  
225 224 context = SSL_CTX_new(SSLv23_method());
226 225 if(context == NULL) {
... ...