diff options
Diffstat (limited to 'file_io/unix/fileacc.c')
-rw-r--r-- | file_io/unix/fileacc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/file_io/unix/fileacc.c b/file_io/unix/fileacc.c index 71d796a20..9a18584dc 100644 --- a/file_io/unix/fileacc.c +++ b/file_io/unix/fileacc.c @@ -68,9 +68,6 @@ #else #include "fileio.h" #endif -#if APR_HAS_UNICODE_FS -#include "i18n.h" -#endif /* A file to put ALL of the accessor functions for apr_file_t types. */ @@ -92,9 +89,9 @@ apr_status_t apr_get_filename(char **fname, apr_file_t *thefile) return APR_ENAMETOOLONG; } else -#else /* !APR_HAS_UNICODE_FS */ +#endif /* !APR_HAS_UNICODE_FS */ *fname = apr_pstrdup(thefile->cntxt, thefile->n.fname); -#endif + #else /* !def Win32 */ *fname = apr_pstrdup(thefile->cntxt, thefile->fname); #endif |