From: Felix Morgner Date: Wed, 11 Feb 2015 10:00:52 +0000 (+0100) Subject: fixed qualification warnings X-Git-Url: http://git.code-monkey.de/?p=umurmur.git;a=commitdiff_plain;h=4f1c250ec3343600a97ff05da2c72175e05d2125 fixed qualification warnings --- 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);