svn commit: trunk/busybox/coreutils

vda at busybox.net vda at busybox.net
Sat Oct 28 12:42:40 UTC 2006


Author: vda
Date: 2006-10-28 05:42:40 -0700 (Sat, 28 Oct 2006)
New Revision: 16465

Log:
chmod: typo in comments


Modified:
   trunk/busybox/coreutils/chmod.c


Changeset:
Modified: trunk/busybox/coreutils/chmod.c
===================================================================
--- trunk/busybox/coreutils/chmod.c	2006-10-28 12:37:51 UTC (rev 16464)
+++ trunk/busybox/coreutils/chmod.c	2006-10-28 12:42:40 UTC (rev 16465)
@@ -87,7 +87,7 @@
 		}
 	}
 
-	/* Paerse options */
+	/* Parse options */
 	opt_complementary = "-2";
 	getopt32(argc, argv, ("-"OPT_STR) + 1); /* Reuse string */
 	argv += optind;
@@ -99,13 +99,13 @@
 	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;
 		}




More information about the busybox-cvs mailing list