diff options
author | Ryan Bloom <rbb@apache.org> | 2000-10-30 21:13:04 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-10-30 21:13:04 +0100 |
commit | 7d9a83ff9211782757792588e14dc6e24ba8f060 (patch) | |
tree | 0d3d0e1727e822a3b6943acc1e878446aaeeb8a5 /include/http_config.h | |
parent | Get mod_auth_anon to compile cleanly in 2.0 (diff) | |
download | apache2-7d9a83ff9211782757792588e14dc6e24ba8f060.tar.xz apache2-7d9a83ff9211782757792588e14dc6e24ba8f060.zip |
Make mod_auth_db compile cleanly in 2.0
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86768 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_config.h')
-rw-r--r-- | include/http_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_config.h b/include/http_config.h index 8237f4f1d4..de322b4573 100644 --- a/include/http_config.h +++ b/include/http_config.h @@ -523,9 +523,9 @@ AP_DECLARE_NONSTD(const char *) ap_set_flag_slot(cmd_parms *, void *, int); * @param struct_ptr pointer into a given type * @param arg The argument to the directive * @return An error string or NULL on success - * @deffunc const char *ap_set_file_slot(cmd_parms *cmd, char *struct_ptr, const char *arg) + * @deffunc const char *ap_set_file_slot(cmd_parms *cmd, void *struct_ptr, const char *arg) */ -AP_DECLARE_NONSTD(const char *) ap_set_file_slot(cmd_parms *, char *, const char *); +AP_DECLARE_NONSTD(const char *) ap_set_file_slot(cmd_parms *, void *, const char *); /** * For modules which need to read config files, open logs, etc. ... |