mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 16:29:50 +00:00
find: -type T was actually meaning ! -type T!
With this fix, "make mrproper" works correctly
This commit is contained in:
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
Block a user