bug-global
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Mistake in new --skip-unreadabe code


From: Simon D.
Subject: Mistake in new --skip-unreadabe code
Date: Fri, 04 Sep 2015 16:46:25 +0100

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

reply via email to

[Prev in Thread] Current Thread [Next in Thread]