diff options
author | Matt Kraai <kraai@debian.org> | 2001-12-20 23:13:26 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-12-20 23:13:26 +0000 |
commit | 1f0c43668ac332cbcf61cbdf71844799327cc8b9 (patch) | |
tree | 97414e991363fa613f229019d697280cae1097e0 /findutils/find.c | |
parent | 31c73af656813b5cadcb1dd27adb9bbc62a98987 (diff) | |
download | busybox-w32-1f0c43668ac332cbcf61cbdf71844799327cc8b9.tar.gz busybox-w32-1f0c43668ac332cbcf61cbdf71844799327cc8b9.tar.bz2 busybox-w32-1f0c43668ac332cbcf61cbdf71844799327cc8b9.zip |
Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.
Diffstat (limited to 'findutils/find.c')
-rw-r--r-- | findutils/find.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/findutils/find.c b/findutils/find.c index 262213e8b..0ff0893a6 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -185,13 +185,13 @@ int find_main(int argc, char **argv) | |||
185 | } | 185 | } |
186 | 186 | ||
187 | if (firstopt == 1) { | 187 | if (firstopt == 1) { |
188 | if (recursive_action(".", TRUE, dereference, FALSE, fileAction, | 188 | if (! recursive_action(".", TRUE, dereference, FALSE, fileAction, |
189 | fileAction, NULL) == FALSE) | 189 | fileAction, NULL)) |
190 | status = EXIT_FAILURE; | 190 | status = EXIT_FAILURE; |
191 | } else { | 191 | } else { |
192 | for (i = 1; i < firstopt; i++) { | 192 | for (i = 1; i < firstopt; i++) { |
193 | if (recursive_action(argv[i], TRUE, dereference, FALSE, fileAction, | 193 | if (! recursive_action(argv[i], TRUE, dereference, FALSE, fileAction, |
194 | fileAction, NULL) == FALSE) | 194 | fileAction, NULL)) |
195 | status = EXIT_FAILURE; | 195 | status = EXIT_FAILURE; |
196 | } | 196 | } |
197 | } | 197 | } |