]> granicus.if.org Git - apache/commitdiff
fix compile break with recent rename of real_exit_code to ap_real_exit_code
authorBill Stoddard <stoddard@apache.org>
Fri, 18 Feb 2005 16:33:04 +0000 (16:33 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 18 Feb 2005 16:33:04 +0000 (16:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@154320 13f79535-47bb-0310-9956-ffa450edef68

os/win32/os.h

index bf23a478fd6ac656b505b72234fe7e61fe0490a7..ae343b8026dcb78f5d606f6a6caf43399532d260 100644 (file)
@@ -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