X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fssli_openssl.c;h=0542bff3441934fc710566cc16b2d5a13ca40ffd;hb=142aa5ec03936235cf66b0ee146558f513820f39;hp=35814aa507fbb51f31cc3900e62735efc79a9fc2;hpb=3b0be801a4783bdf828fdeb874e659dc22f7835c;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);