From bbd695d8010ab453a5a89ba6d7ebfe1a96b87b7d Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 8 Apr 2007 10:52:28 +0000 Subject: find: fix handling of -prune recursive_actions: uppercase flag constants --- coreutils/chown.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils/chown.c') 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) } if (!recursive_action(arg, - (OPT_RECURSE ? action_recurse : 0 | /* recurse */ - OPT_TRAVERSE ? action_followLinks : 0),/* follow links if -L */ + (OPT_RECURSE ? ACTION_RECURSE : 0) | /* recurse */ + (OPT_TRAVERSE ? ACTION_FOLLOWLINKS : 0),/* follow links if -L */ fileAction, /* file action */ fileAction, /* dir action */ chown_func, /* user data */ -- cgit v1.2.3