diff options
author | Bill Stoddard <stoddard@apache.org> | 2005-02-18 17:33:04 +0100 |
---|---|---|
committer | Bill Stoddard <stoddard@apache.org> | 2005-02-18 17:33:04 +0100 |
commit | d8cb4ecb8f8db5d8a663579f6be0b47284e96cc7 (patch) | |
tree | fcf8a7df8a970f51ec0ab056e6320772dad2454e | |
parent | Win32: Move call of mpm_service_install to rewrite_args hook but continue thr... (diff) | |
download | apache2-d8cb4ecb8f8db5d8a663579f6be0b47284e96cc7.tar.xz apache2-d8cb4ecb8f8db5d8a663579f6be0b47284e96cc7.zip |
fix compile break with recent rename of real_exit_code to ap_real_exit_code
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@154320 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | os/win32/os.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/win32/os.h b/os/win32/os.h index bf23a478fd..ae343b8026 100644 --- a/os/win32/os.h +++ b/os/win32/os.h @@ -49,10 +49,10 @@ extern "C" { * fatal error. */ -AP_DECLARE_DATA extern int real_exit_code; +AP_DECLARE_DATA extern int ap_real_exit_code; -#define exit(status) ((exit)((real_exit_code==2) ? (real_exit_code = (status)) \ - : ((real_exit_code = 0), (status)))) +#define exit(status) ((exit)((ap_real_exit_code==2) ? (ap_real_exit_code = (status)) \ + : ((ap_real_exit_code = 0), (status)))) #ifdef AP_DECLARE_EXPORT |