diff options
author | Stefan Fritsch <sf@apache.org> | 2011-06-22 22:24:27 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-06-22 22:24:27 +0200 |
commit | 255f723fefb9963a690c2ea32eab8afdb4362fe6 (patch) | |
tree | 3c4929d0c18d24d9d269818c3e31246544420ff1 /os | |
parent | Add support to ErrorLogFormat for logging the system unique (diff) | |
download | apache2-255f723fefb9963a690c2ea32eab8afdb4362fe6.tar.xz apache2-255f723fefb9963a690c2ea32eab8afdb4362fe6.zip |
We already have ap_str_tolower(), so also add ap_str_toupper() function and use
it where possible.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1138617 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/bs2000/os.c | 9 | ||||
-rw-r--r-- | os/unix/unixd.c | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/os/bs2000/os.c b/os/bs2000/os.c index d0f2164594..0869ff4cbf 100644 --- a/os/bs2000/os.c +++ b/os/bs2000/os.c @@ -42,15 +42,6 @@ typedef enum static bs2_ForkType forktype = bs2_unknown; - -static void ap_str_toupper(char *str) -{ - while (*str) { - *str = apr_toupper(*str); - ++str; - } -} - /* Determine the method for forking off a child in such a way as to * set both the POSIX and BS2000 user id's to the unprivileged user. */ diff --git a/os/unix/unixd.c b/os/unix/unixd.c index db5d328e47..e29fb16d1d 100644 --- a/os/unix/unixd.c +++ b/os/unix/unixd.c @@ -453,15 +453,6 @@ typedef enum static bs2_ForkType forktype = bs2_unknown; - -static void ap_str_toupper(char *str) -{ - while (*str) { - *str = apr_toupper(*str); - ++str; - } -} - /* Determine the method for forking off a child in such a way as to * set both the POSIX and BS2000 user id's to the unprivileged user. */ |