From bfc7b8e3738b2a2a725af724a3eb299534be93f8 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 22 Sep 2003 19:26:21 +0000 Subject: [PATCH] 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 --- modules/ssl/ssl_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.50.1