summaryrefslogtreecommitdiff
path: root/os/bs2000
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-08-06 06:07:53 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-08-06 06:07:53 +0000
commit1a9db204f578e99486280ebfffada02677b1296a (patch)
treea5ad2bfde21ec22fac957b8a436d1b956a746796 /os/bs2000
parentddc1989b99e056088d6ca037d22fb1e9e652a049 (diff)
downloadhttpd-1a9db204f578e99486280ebfffada02677b1296a.tar.gz
Remaining cleanup of ap_ -> apr_ and AP_ -> APR_ transformation...
see src/lib/apr/apr_compat.h for most details. Also a few minor nits to get Win32 to build. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86008 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/bs2000')
-rw-r--r--os/bs2000/bs2login.c2
-rw-r--r--os/bs2000/os.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/os/bs2000/bs2login.c b/os/bs2000/bs2login.c
index 8edad89ef2..23a53744b2 100644
--- a/os/bs2000/bs2login.c
+++ b/os/bs2000/bs2login.c
@@ -93,7 +93,7 @@ static void ap_pad(char *dest, size_t size, char ch)
static void ap_str_toupper(char *str)
{
while (*str) {
- *str = ap_toupper(*str);
+ *str = apr_toupper(*str);
++str;
}
}
diff --git a/os/bs2000/os.h b/os/bs2000/os.h
index 80c9e2e30d..e660d668b2 100644
--- a/os/bs2000/os.h
+++ b/os/bs2000/os.h
@@ -71,7 +71,7 @@
/* Compiler supports inline, so include the inlineable functions as
* part of the header
*/
-#define INLINE extern ap_inline
+#define INLINE extern apr_inline
INLINE int ap_os_is_path_absolute(const char *file);