- add libbb function str_tolower to convert a string to lowercase.
[oweals/busybox.git] / coreutils / chown.c
index 09b1a595b641a9b315d42942e00700641d25ca32..e64a39c3e8ce6f9dc1c8a8610cd817fbfc14ecc2 100644 (file)
@@ -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 */