From 68d3eccc3a5859b2996425370174c70d54228d41 Mon Sep 17 00:00:00 2001 From: ru Date: Mon, 28 May 2001 12:58:10 +0000 Subject: Follow symbolic links named as command line arguments if run without -R. This is required by symlink(7), ``Commands not traversing a file tree'' subsection, third paragraph: : It is important to realize that this rule includes commands which may : optionally traverse file trees, e.g. the command ``chown file'' is : included in this rule, while the command ``chown -R file'' is not. For chown(8) and chgrp(1), this is also is compliance with the latest POSIX 1003.1-200x draft. MFC after: 1 week --- bin/chmod/chmod.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/chmod/chmod.c') diff --git a/bin/chmod/chmod.c b/bin/chmod/chmod.c index 1129151..7a843c7 100644 --- a/bin/chmod/chmod.c +++ b/bin/chmod/chmod.c @@ -134,8 +134,8 @@ done: argv += optind; if (argc < 2) usage(); - fts_options = FTS_PHYSICAL; if (Rflag) { + fts_options = FTS_PHYSICAL; if (hflag) errx(1, "the -R and -h options may not be specified together."); @@ -145,7 +145,8 @@ done: argv += optind; fts_options &= ~FTS_PHYSICAL; fts_options |= FTS_LOGICAL; } - } + } else + fts_options = FTS_LOGICAL; mode = *argv; if (*mode >= '0' && *mode <= '7') { -- cgit v1.1