summaryrefslogtreecommitdiff
path: root/os/unix
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-06-22 20:24:27 +0000
committerStefan Fritsch <sf@apache.org>2011-06-22 20:24:27 +0000
commit255f723fefb9963a690c2ea32eab8afdb4362fe6 (patch)
tree3c4929d0c18d24d9d269818c3e31246544420ff1 /os/unix
parentbde65f90cb59c4116e5c86f9573fe414835fd395 (diff)
downloadhttpd-255f723fefb9963a690c2ea32eab8afdb4362fe6.tar.gz
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/unix')
-rw-r--r--os/unix/unixd.c9
1 files changed, 0 insertions, 9 deletions
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.
*/