diff options
author | Ryan Bloom <rbb@apache.org> | 1999-08-31 14:33:08 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 1999-08-31 14:33:08 +0200 |
commit | d2ce3ead81722803a162fb20883a70aa0b711030 (patch) | |
tree | 644b831289fb8d98d3c4aff8350291873df8e6ea /os/bs2000 | |
parent | Changed pools to contexts. Tested with prefork and pthread mpm's. I'll (diff) | |
download | apache2-d2ce3ead81722803a162fb20883a70aa0b711030.tar.xz apache2-d2ce3ead81722803a162fb20883a70aa0b711030.zip |
Fix some errors from a global search and replace gone wrong. This should
let the new context changes work on all platforms.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83853 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/bs2000')
-rw-r--r-- | os/bs2000/os.c | 2 | ||||
-rw-r--r-- | os/bs2000/os.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/os/bs2000/os.c b/os/bs2000/os.c index 942a06aa7f..c33810a2f0 100644 --- a/os/bs2000/os.c +++ b/os/bs2000/os.c @@ -57,7 +57,7 @@ /* * This file will include OS specific functions which are not inlineable. - * Any inlineable functions should be defined in os ap_context_t nline.c instead. + * Any inlineable functions should be defined in os-inline.c instead. */ #include "httpd.h" diff --git a/os/bs2000/os.h b/os/bs2000/os.h index fb66b6155e..1ede0813f2 100644 --- a/os/bs2000/os.h +++ b/os/bs2000/os.h @@ -6,7 +6,7 @@ /* * This file in included in all Apache source code. It contains definitions * of facilities available on _this_ operating system (HAVE_* macros), - * and prototypes of OS specific functions defined in os.c or os ap_context_t nline.c + * and prototypes of OS specific functions defined in os.c or os-inline.c */ #if !defined(INLINE) && defined(USE_GNU_INLINE) @@ -17,7 +17,7 @@ INLINE int ap_os_is_path_absolute(const char *file); -#include "os ap_context_t nline.c" +#include "os-inline.c" #endif #ifndef INLINE |