X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fssli_openssl.c;h=0542bff3441934fc710566cc16b2d5a13ca40ffd;hb=4f1c250ec3343600a97ff05da2c72175e05d2125;hp=35814aa507fbb51f31cc3900e62735efc79a9fc2;hpb=99014f491c3ebbe7ed5aef4772212e54e551125f;p=umurmur.git diff --git a/src/ssli_openssl.c b/src/ssli_openssl.c index 35814aa..0542bff 100644 --- a/src/ssli_openssl.c +++ b/src/ssli_openssl.c @@ -235,7 +235,7 @@ static void SSL_initializeCert() { void SSLi_init(void) { - const SSL_METHOD *method; + SSL_METHOD *method; SSL *ssl; int i, offset = 0, cipherstringlen = 0; STACK_OF(SSL_CIPHER) *cipherlist = NULL, *cipherlist_new = NULL; @@ -254,7 +254,7 @@ void SSLi_init(void) abort(); } - char* sslCAPath = getStrConf(CAPATH); + char const * sslCAPath = getStrConf(CAPATH); if(sslCAPath != NULL) { SSL_CTX_load_verify_locations(context, NULL, sslCAPath);