projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14aa9f7
)
find: -type T was actually meaning ! -type T!
author
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 31 Oct 2006 23:39:37 +0000
(23:39 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 31 Oct 2006 23:39:37 +0000
(23:39 -0000)
With this fix, "make mrproper" works correctly
findutils/find.c
patch
|
blob
|
history
diff --git
a/findutils/find.c
b/findutils/find.c
index bc285d36a56903a9d4846836981d7e467b08b030..f3f4d959d088d6259aef0a9eb8c46cc936d7cfcb 100644
(file)
--- a/
findutils/find.c
+++ b/
findutils/find.c
@@
-143,7
+143,7
@@
SFUNC(name)
#if ENABLE_FEATURE_FIND_TYPE
SFUNC(type)
{
- return
!
((statbuf->st_mode & S_IFMT) == ap->type_mask);
+ return ((statbuf->st_mode & S_IFMT) == ap->type_mask);
}
#endif
#if ENABLE_FEATURE_FIND_PERM