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