aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chown.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-08 10:52:28 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-08 10:52:28 +0000
commitbbd695d8010ab453a5a89ba6d7ebfe1a96b87b7d (patch)
tree98df39594da2e7f1fbe560aec04eeb09426947f0 /coreutils/chown.c
parentca3484103e6b99d0c433988f2f809840d780d88b (diff)
downloadbusybox-w32-bbd695d8010ab453a5a89ba6d7ebfe1a96b87b7d.tar.gz
busybox-w32-bbd695d8010ab453a5a89ba6d7ebfe1a96b87b7d.tar.bz2
busybox-w32-bbd695d8010ab453a5a89ba6d7ebfe1a96b87b7d.zip
find: fix handling of -prune
recursive_actions: uppercase flag constants
Diffstat (limited to 'coreutils/chown.c')
-rw-r--r--coreutils/chown.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/chown.c b/coreutils/chown.c
index 09b1a595b..e64a39c3e 100644
--- a/coreutils/chown.c
+++ b/coreutils/chown.c
@@ -92,8 +92,8 @@ int chown_main(int argc, char **argv)
92 } 92 }
93 93
94 if (!recursive_action(arg, 94 if (!recursive_action(arg,
95 (OPT_RECURSE ? action_recurse : 0 | /* recurse */ 95 (OPT_RECURSE ? ACTION_RECURSE : 0) | /* recurse */
96 OPT_TRAVERSE ? action_followLinks : 0),/* follow links if -L */ 96 (OPT_TRAVERSE ? ACTION_FOLLOWLINKS : 0),/* follow links if -L */
97 fileAction, /* file action */ 97 fileAction, /* file action */
98 fileAction, /* dir action */ 98 fileAction, /* dir action */
99 chown_func, /* user data */ 99 chown_func, /* user data */