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
_______________________________________________
Bug-global mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-global
