From: William A. Rowe Jr Date: Mon, 22 Sep 2003 19:26:21 +0000 (+0000) Subject: SSL-C doesn't declare the char* file arg const, so we shouldn't either. X-Git-Tag: pre_ajp_proxy~1147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfc7b8e3738b2a2a725af724a3eb299534be93f8;p=apache SSL-C doesn't declare the char* file arg const, so we shouldn't either. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101303 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util.c b/modules/ssl/ssl_util.c index f5dbc8796d..a087623581 100644 --- a/modules/ssl/ssl_util.c +++ b/modules/ssl/ssl_util.c @@ -405,10 +405,10 @@ static int lock_num_locks; #ifdef HAVE_SSLC #if SSLC_VERSION_NUMBER >= 0x2000 static int ssl_util_thr_lock(int mode, int type, - const char *file, int line) + char *file, int line) #else static void ssl_util_thr_lock(int mode, int type, - const char *file, int line) + char *file, int line) #endif #else static void ssl_util_thr_lock(int mode, int type,