X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fssl.c;h=245ea8d8a9893efedad82a4d80e137f052fc7b24;hb=a1a7d5dc60fb40d39c9f1cbc6b1879bc562299a7;hp=4b9f520d51bda72e870a264a70e093818d7aa17e;hpb=eaca75aa6c133cc6ff3d707f7ae8dbfbe51a6d2a;p=dockapps%2Fwmnotify.git diff --git a/src/ssl.c b/src/ssl.c index 4b9f520..245ea8d 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -35,10 +35,10 @@ InitCTX( void ) SSL_METHOD *method; SSL_CTX *ctx; - OpenSSL_add_all_algorithms(); /* Load cryptos, et.al. */ - SSL_load_error_strings(); /* Bring in and register error messages */ + OpenSSL_add_all_algorithms(); /* Load cryptos, et.al. */ + SSL_load_error_strings(); /* Bring in and register error messages */ method = SSLv2_client_method(); /* Create new client-method instance */ - ctx = SSL_CTX_new(method); /* Create new context */ + ctx = SSL_CTX_new(method); /* Create new context */ if( ctx == NULL ) { ERR_print_errors_fp(stderr); abort();