diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2003-09-22 19:26:21 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2003-09-22 19:26:21 +0000 |
commit | bfc7b8e3738b2a2a725af724a3eb299534be93f8 (patch) | |
tree | dd8dd47bec8198ad0e036816f41b304dc3c7b648 /modules/ssl | |
parent | 9650c40c9fa66670c476d9bbb085ef00e90e7e48 (diff) | |
download | httpd-bfc7b8e3738b2a2a725af724a3eb299534be93f8.tar.gz |
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
Diffstat (limited to 'modules/ssl')
-rw-r--r-- | modules/ssl/ssl_util.c | 4 |
1 files 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, |