diff options
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r-- | coreutils/chown.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c index c1b992c..846e27c 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -94,8 +94,8 @@ int chown_main(int argc, char **argv) /* Ok, ready to do the deed now */ while (++optind < argc) { - if (recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, - fileAction, fileAction, NULL) == FALSE) { + if (! recursive_action (argv[optind], recursiveFlag, FALSE, FALSE, + fileAction, fileAction, NULL)) { return EXIT_FAILURE; } } |