]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove all warnings from the input filtering stack.
authorRyan Bloom <rbb@apache.org>
Tue, 7 Aug 2001 16:19:03 +0000 (16:19 +0000)
committerRyan Bloom <rbb@apache.org>
Tue, 7 Aug 2001 16:19:03 +0000 (16:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@89987 13f79535-47bb-0310-9956-ffa450edef68

ssl_engine_config.c
ssl_engine_dh.c

index e479561962e3b1c17d90aec70cd302c0c0abfae1..60ec0dcb64337129699e910c981fb6f07edf86df 100644 (file)
@@ -664,7 +664,7 @@ const char *ssl_cmd_SSLSessionCache(
             return "SSLSessionCache: shared memory cache not useable on this platform";
 #endif
         mc->nSessionCacheMode      = SSL_SCMODE_SHMHT;
-        cp = strchr(arg, ':');
+        cp = ap_strchr_c(arg, ':');
         mc->szSessionCacheDataFile = (char *)apr_pstrdup(mc->pPool,
                                      ap_server_root_relative(cmd->pool, cp+1));
         mc->tSessionCacheDataTable = NULL;
index 35689dd6e0a6f760913b6813d9afd102cfbe91d4..5e8e09d1c68aa50e54d4d4a4922ec914019e27a7 100644 (file)
@@ -101,7 +101,7 @@ static unsigned char dh512_g[] =
     0x02,
 };
 
-static DH *get_dh512()
+static DH *get_dh512(void)
 {
     DH *dh;
 
@@ -132,7 +132,7 @@ static unsigned char dh1024_g[] =
     0x02,
 };
 
-static DH *get_dh1024()
+static DH *get_dh1024(void)
 {
     DH *dh;