From 9c777dfe8301cc0088917e35333d7db0064d68c8 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 18 Aug 2001 11:55:52 +0000 Subject: Update. 2001-08-18 Ulrich Drepper * conform/conformtest.pl: Change namespace test to take #undef lines into account. * conform/data/netinet/in.h-data: Fix typo in allow-header line. * conform/data/sys/socket.h-data: Add sockatmark. --- io/fts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io/fts.c') diff --git a/io/fts.c b/io/fts.c index 44473a6bc2..bfe41d3f44 100644 --- a/io/fts.c +++ b/io/fts.c @@ -653,7 +653,7 @@ fts_build(sp, type) cur->fts_flags |= FTS_DONTCHDIR; descend = 0; cderrno = errno; - (void)closedir(dirp); + (void)__closedir(dirp); dirp = NULL; } else descend = 1; @@ -685,7 +685,7 @@ fts_build(sp, type) /* Read the directory, attaching each entry to the `link' pointer. */ doadjust = 0; - for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) { + for (head = tail = NULL, nitems = 0; dirp && (dp = __readdir(dirp));) { if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name)) continue; -- cgit 1.4.1