Mistake in new --skip-unreadabe code
"Simon D." <[email protected]>
| Newsgroups | gmane.comp.gnu.global.bugs |
|---|---|
| Message-ID | <[email protected]> |
Hi, Shigio.
The line:
if (st.st_mode == S_IFIFO || st.st_mode == S_IFCHR || st.st_mode == S_IFBLK) {
in getdirs() [find.c] should be:
if (S_ISFIFO(st.st_mode) || S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) {
Simon Dommett