diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-10-30 15:48:33 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-10-30 15:48:33 +0100 |
commit | 4484b9e29656980f18bb0fc8cdb6b1bbe5364f21 (patch) | |
tree | 3780df60b52f271014d0ccb66456fe7d6e41b5cf /locale/programs/locarchive.c | |
parent | 68fe16dd327c895c08b9ee443b234c49c13b36e9 (diff) | |
download | glibc-4484b9e29656980f18bb0fc8cdb6b1bbe5364f21.tar.gz glibc-4484b9e29656980f18bb0fc8cdb6b1bbe5364f21.tar.xz glibc-4484b9e29656980f18bb0fc8cdb6b1bbe5364f21.zip |
Assume that _DIRENT_HAVE_D_TYPE is always defined.
References remain in io/fts.c, io/ftw.c, posix/glob.c, sysdeps/posix/getcwd.c. These files are (potentially) externally shared.
Diffstat (limited to 'locale/programs/locarchive.c')
-rw-r--r-- | locale/programs/locarchive.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/locale/programs/locarchive.c b/locale/programs/locarchive.c index 633c59b5be..50e975df20 100644 --- a/locale/programs/locarchive.c +++ b/locale/programs/locarchive.c @@ -1385,17 +1385,13 @@ add_locales_to_archive (size_t nlist, char *list[], bool replace) a directory we have to look at a file with the prefix "SYS_". Otherwise we have found what we are looking for. */ -#ifdef _DIRENT_HAVE_D_TYPE d_type = d->d_type; if (d_type != DT_REG) -#endif { char fullname[fnamelen + 2 * strlen (d->d_name) + 7]; -#ifdef _DIRENT_HAVE_D_TYPE if (d_type == DT_UNKNOWN) -#endif { strcpy (stpcpy (stpcpy (fullname, fname), "/"), d->d_name); |