mturk 2005/04/10 23:55:23
Modified: jk/native/apache-2.0 mod_jk.c
Log:
Fix compile time warnings about no previous prototype..
Revision Changes Path
1.136 +5 -4 jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c
Index: mod_jk.c
===================================================================
RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/apache-2.0/mod_jk.c,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- mod_jk.c 9 Apr 2005 15:44:35 -0000 1.135
+++ mod_jk.c 11 Apr 2005 06:55:23 -0000 1.136
@@ -1474,7 +1474,8 @@
* ForwardDirectories => Forward all directory requests with no index
files to Tomcat
*/
-const char *jk_set_options(cmd_parms * cmd, void *dummy, const char *line)
+static const char *jk_set_options(cmd_parms * cmd, void *dummy,
+ const char *line)
{
int opt = 0;
int mask = 0;
@@ -1717,7 +1718,7 @@
/** Util - cleanup endpoint.
*/
-apr_status_t jk_cleanup_endpoint(void *data)
+static apr_status_t jk_cleanup_endpoint(void *data)
{
jk_endpoint_t *end = (jk_endpoint_t *)data;
/* printf("XXX jk_cleanup1 %ld\n", data); */
@@ -1727,7 +1728,7 @@
/** Util - cleanup shmem.
*/
-apr_status_t jk_cleanup_shmem(void *data)
+static apr_status_t jk_cleanup_shmem(void *data)
{
jk_logger_t *l = data;
jk_shm_close();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]