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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7489c53736088a722f5f0cb532eb6963680fa58;p=thirdparty%2Fapache%2Fhttpd.git 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/modules/ssl@101303 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_util.c b/ssl_util.c index f5dbc8796da..a0876235819 100644 --- a/ssl_util.c +++ b/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,