From 8c0c119130be3da88fe880ff47a1bfa2c51d0083 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 28 Oct 2006 12:42:40 +0000 Subject: chmod: typo in comments --- coreutils/chmod.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'coreutils/chmod.c') 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; } -- cgit v1.2.3