mirror of https://github.com/mirror/busybox.git
find: -type T was actually meaning ! -type T!
With this fix, "make mrproper" works correctly1_4_stable
parent
14aa9f7415
commit
31c65f2456
|
|
@ -143,7 +143,7 @@ SFUNC(name)
|
||||||
#if ENABLE_FEATURE_FIND_TYPE
|
#if ENABLE_FEATURE_FIND_TYPE
|
||||||
SFUNC(type)
|
SFUNC(type)
|
||||||
{
|
{
|
||||||
return !((statbuf->st_mode & S_IFMT) == ap->type_mask);
|
return ((statbuf->st_mode & S_IFMT) == ap->type_mask);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if ENABLE_FEATURE_FIND_PERM
|
#if ENABLE_FEATURE_FIND_PERM
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue