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 | |
parent | 94cf69fe3e24b2b94c363e30664672617196e628 (diff) | |
download | busybox-w32-8c0c119130be3da88fe880ff47a1bfa2c51d0083.tar.gz busybox-w32-8c0c119130be3da88fe880ff47a1bfa2c51d0083.tar.bz2 busybox-w32-8c0c119130be3da88fe880ff47a1bfa2c51d0083.zip |
chmod: typo in comments
-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) | |||
87 | } | 87 | } |
88 | } | 88 | } |
89 | 89 | ||
90 | /* Paerse options */ | 90 | /* Parse options */ |
91 | opt_complementary = "-2"; | 91 | opt_complementary = "-2"; |
92 | getopt32(argc, argv, ("-"OPT_STR) + 1); /* Reuse string */ | 92 | getopt32(argc, argv, ("-"OPT_STR) + 1); /* Reuse string */ |
93 | argv += optind; | 93 | argv += optind; |
@@ -99,13 +99,13 @@ int chmod_main(int argc, char **argv) | |||
99 | smode = *argv++; | 99 | smode = *argv++; |
100 | do { | 100 | do { |
101 | if (!recursive_action(*argv, | 101 | if (!recursive_action(*argv, |
102 | OPT_RECURSE, // recurse | 102 | OPT_RECURSE, // recurse |
103 | FALSE, // follow links: GNU doesn't | 103 | FALSE, // follow links: coreutils doesn't |
104 | FALSE, // depth first | 104 | FALSE, // depth first |
105 | fileAction, // file action | 105 | fileAction, // file action |
106 | fileAction, // dir action | 106 | fileAction, // dir action |
107 | smode, // user data | 107 | smode, // user data |
108 | 0) // depth | 108 | 0) // depth |
109 | ) { | 109 | ) { |
110 | retval = EXIT_FAILURE; | 110 | retval = EXIT_FAILURE; |
111 | } | 111 | } |