diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-28 12:42:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-28 12:42:40 +0000 |
commit | 8c0c119130be3da88fe880ff47a1bfa2c51d0083 (patch) | |
tree | 023432fcb90796969e31d7cc7663f004b09a39ae /coreutils | |
parent | 94cf69fe3e24b2b94c363e30664672617196e628 (diff) | |
download | busybox-8c0c119130be3da88fe880ff47a1bfa2c51d0083.tar.gz |
chmod: typo in comments
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/chmod.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/coreutils/chmod.c b/coreutils/chmod.c index 4abae2d51..990e9b4ce 100644 --- a/coreutils/chmod.c +++ b/coreutils/chmod.c @@ -87,7 +87,7 @@ int chmod_main(int argc, char **argv) } } - /* Paerse options */ + /* Parse options */ opt_complementary = "-2"; getopt32(argc, argv, ("-"OPT_STR) + 1); /* Reuse string */ argv += optind; @@ -99,13 +99,13 @@ int chmod_main(int argc, char **argv) smode = *argv++; do { if (!recursive_action(*argv, - OPT_RECURSE, // recurse - FALSE, // follow links: GNU doesn't - FALSE, // depth first - fileAction, // file action - fileAction, // dir action - smode, // user data - 0) // depth + OPT_RECURSE, // recurse + FALSE, // follow links: coreutils doesn't + FALSE, // depth first + fileAction, // file action + fileAction, // dir action + smode, // user data + 0) // depth ) { retval = EXIT_FAILURE; } |