diff options
author | Jeff Trawick <trawick@apache.org> | 2001-03-03 03:13:49 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2001-03-03 03:13:49 +0100 |
commit | 69629215b8987327b7813eb76a28817538537019 (patch) | |
tree | a275c6444092f7054872f38a12b622111c4aa896 /server/config.c | |
parent | Get rid of unnecessary apr_status_t variables in a couple of functions. (diff) | |
download | apache2-69629215b8987327b7813eb76a28817538537019.tar.xz apache2-69629215b8987327b7813eb76a28817538537019.zip |
Use a proper prototype for ap_show_directives() and ap_show_modules() so
that they match their prototypes in http_config.h.
PR: 6980
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/config.c')
-rw-r--r-- | server/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/config.c b/server/config.c index c5a2bd2e87..d6c0284742 100644 --- a/server/config.c +++ b/server/config.c @@ -1702,7 +1702,7 @@ static void show_overrides(const command_rec *pc, module *pm) * the directive arguments, in what module they are handled, and in * what parts of the configuration they are allowed. Used for httpd -h. */ -AP_DECLARE(void) ap_show_directives() +AP_DECLARE(void) ap_show_directives(void) { const command_rec *pc; int n; @@ -1717,7 +1717,7 @@ AP_DECLARE(void) ap_show_directives() } /* Show the preloaded module names. Used for httpd -l. */ -AP_DECLARE(void) ap_show_modules() +AP_DECLARE(void) ap_show_modules(void) { int n; |