summaryrefslogtreecommitdiff
path: root/modules/loggers/mod_log_config.h
diff options
context:
space:
mode:
authorIan Holsman <ianh@apache.org>2003-02-14 04:17:34 +0000
committerIan Holsman <ianh@apache.org>2003-02-14 04:17:34 +0000
commit7f5768e1876c8e0b8b0b319f273727ecfac3803a (patch)
tree5a6599fe12ef8183582883f4769d3e5927b0b674 /modules/loggers/mod_log_config.h
parent34850f47e54459388b4afa0c8fd7c73e625638e9 (diff)
downloadhttpd-7f5768e1876c8e0b8b0b319f273727ecfac3803a.tar.gz
change optional function to return the previous writer, allowing to have mutliple types
of writers in the same server. (previously you could only have one) it needs a mmn bump.. sorry guys ;( git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98648 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/loggers/mod_log_config.h')
-rw-r--r--modules/loggers/mod_log_config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/loggers/mod_log_config.h b/modules/loggers/mod_log_config.h
index 600daac52a..7a9f1d55db 100644
--- a/modules/loggers/mod_log_config.h
+++ b/modules/loggers/mod_log_config.h
@@ -96,10 +96,10 @@ APR_DECLARE_OPTIONAL_FN(void, ap_register_log_handler,
* you will need to set your init handler *BEFORE* the open_logs
* in mod_log_config gets executed
*/
-APR_DECLARE_OPTIONAL_FN(void, ap_log_set_writer_init,(ap_log_writer_init *func));
+APR_DECLARE_OPTIONAL_FN(ap_log_writer_init*, ap_log_set_writer_init,(ap_log_writer_init *func));
/**
* you should probably set the writer at the same time (ie..before open_logs)
*/
-APR_DECLARE_OPTIONAL_FN(void, ap_log_set_writer, (ap_log_writer* func));
+APR_DECLARE_OPTIONAL_FN(ap_log_writer*, ap_log_set_writer, (ap_log_writer* func));
#endif /* MOD_LOG_CONFIG */