summaryrefslogtreecommitdiff
path: root/file_io/os2/filesys.c
diff options
context:
space:
mode:
Diffstat (limited to 'file_io/os2/filesys.c')
-rw-r--r--file_io/os2/filesys.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/file_io/os2/filesys.c b/file_io/os2/filesys.c
index ef597b38e..b323e488d 100644
--- a/file_io/os2/filesys.c
+++ b/file_io/os2/filesys.c
@@ -94,13 +94,12 @@ apr_status_t filepath_drive_get(char **rootpath, char drive,
apr_status_t filepath_root_case(char **rootpath, char *root, apr_pool_t *p)
{
- if (root[0] && apr_islower(root[0]) && root[1] == ':') {
- *rootpath = apr_pstrdup(p, root);
- (*rootpath)[0] = apr_toupper((*rootpath)[0]);
- }
- else {
- *rootpath = root;
- }
+ char path[APR_PATH_MAX];
+
+ strcpy(path, root);
+ if (path[1] == ':')
+ path[0] = apr_toupper(path[0]);
+ *rootpath = apr_pstrdup(p, path);
return APR_SUCCESS;
}