aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-28 12:42:40 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-28 12:42:40 +0000
commit77be7a0c45fc0bcd6b35c7b82f5c3846cbd91e51 (patch)
tree023432fcb90796969e31d7cc7663f004b09a39ae
parent1f832a09423ddf05f45060a49a0921e46f373e1a (diff)
downloadbusybox-w32-77be7a0c45fc0bcd6b35c7b82f5c3846cbd91e51.tar.gz
busybox-w32-77be7a0c45fc0bcd6b35c7b82f5c3846cbd91e51.tar.bz2
busybox-w32-77be7a0c45fc0bcd6b35c7b82f5c3846cbd91e51.zip
chmod: typo in comments
git-svn-id: svn://busybox.net/trunk/busybox@16465 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/chmod.c16
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 }