summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-01-21 16:27:07 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-01-21 16:27:07 +0000
commit7a5bfc8f62e1cebfff1eac2a0d0ac638c0c1642c (patch)
treec2af41c45d17362f15e14940fcd36e816afb2fce /file_io
parent212ff9e9968b4ec2cfbe00a42e638cde3de2dc50 (diff)
downloadlibapr-7a5bfc8f62e1cebfff1eac2a0d0ac638c0c1642c.tar.gz
Backout apr_get_filename_case.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61091 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/unix/filestat.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/file_io/unix/filestat.c b/file_io/unix/filestat.c
index cbcba106e..1c38f6987 100644
--- a/file_io/unix/filestat.c
+++ b/file_io/unix/filestat.c
@@ -208,16 +208,3 @@ apr_status_t apr_lstat(apr_finfo_t *finfo, const char *fname,
return apr_stat(finfo, fname, wanted | APR_FINFO_LINK, cont);
}
-/* XXX: This is wrong for case-insensitive, case-preserving mount points.
- * Unfortuantely, I don't have a clue about tweaking this code for unix,
- * other than the basic stratagy of stat, then walk dirread for dev/inode.
- */
-APR_DECLARE(apr_status_t) apr_get_filename_case(const char **fname,
- const char *fspec,
- apr_pool_t *cont)
-{
- *fname = strrchr(fspec, '/');
- if (!*fname)
- *fname = fspec;
- return APR_SUCCESS;
-}