summaryrefslogtreecommitdiff
path: root/src/scandir.c
diff options
context:
space:
mode:
authorAaron M. Ucko <ucko@debian.org>2011-06-21 22:15:14 -0400
committerAaron M. Ucko <ucko@debian.org>2011-06-21 22:15:14 -0400
commit79f54a44748073e5e8294781a7ef325eada98bc5 (patch)
tree3d471071e36c2f8e1921f899b210124086b265c8 /src/scandir.c
parentf788c1e23df1bf6eb79c9f913567dc2dc30abc63 (diff)
Imported Upstream version 1.3.0
Diffstat (limited to 'src/scandir.c')
-rw-r--r--src/scandir.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/scandir.c b/src/scandir.c
index 1a3bd0d..ffe5803 100644
--- a/src/scandir.c
+++ b/src/scandir.c
@@ -21,7 +21,6 @@ USA. */
#else
# include "flstring.h"
-# include <FL/fl_utf8.h>
# if !HAVE_SCANDIR
# include <stdlib.h>
@@ -50,7 +49,7 @@ fl_scandir(const char *dir, struct dirent ***namelist,
int (*select)(struct dirent *),
int (*compar)(struct dirent **, struct dirent **))
{
- DIR *dp = opendir (fl_utf2mbcs(dir));
+ DIR *dp = opendir (dir);
struct dirent **v = NULL;
size_t vsize = 0, i;
struct dirent *d;
@@ -121,5 +120,5 @@ fl_scandir(const char *dir, struct dirent ***namelist,
#endif
/*
- * End of "$Id: scandir.c 6311 2008-09-19 17:40:20Z matt $".
+ * End of "$Id: scandir.c 8192 2011-01-05 16:50:10Z manolo $".
*/