diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-05-28 00:40:44 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-05-28 00:40:44 +0200 |
commit | da493b8be15e831bbbefbe28826f90163f430bbd (patch) | |
tree | e900ff111666fb78fa08a248f13ccba80bff69ae /modules/echo/mod_echo.c | |
parent | Add a showstopper for Windows. (diff) | |
download | apache2-da493b8be15e831bbbefbe28826f90163f430bbd.tar.xz apache2-da493b8be15e831bbbefbe28826f90163f430bbd.zip |
PR:
Obtained from:
Submitted by:
Reviewed by:
Reverse out all _EXPORT_VAR changes back to their original _VAR_EXPORT
names for linkage (API_, CORE_, and MODULE_).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85318 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/echo/mod_echo.c')
-rw-r--r-- | modules/echo/mod_echo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/echo/mod_echo.c b/modules/echo/mod_echo.c index f635ff5688..752a0dd1e5 100644 --- a/modules/echo/mod_echo.c +++ b/modules/echo/mod_echo.c @@ -62,7 +62,7 @@ #include "http_config.h" #include "http_connection.h" -API_EXPORT_VAR module echo_module; +API_VAR_EXPORT module echo_module; typedef struct { @@ -121,7 +121,7 @@ static void register_hooks(void) ap_hook_process_connection(process_echo_connection,NULL,NULL,AP_HOOK_MIDDLE); } -API_EXPORT_VAR module echo_module = { +API_VAR_EXPORT module echo_module = { STANDARD20_MODULE_STUFF, NULL, /* create per-directory config structure */ NULL, /* merge per-directory config structures */ |