summaryrefslogtreecommitdiffstats
path: root/bin/chmod
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2001-05-28 12:58:10 +0000
committerru <ru@FreeBSD.org>2001-05-28 12:58:10 +0000
commit68d3eccc3a5859b2996425370174c70d54228d41 (patch)
treeeeef75904b015972527c6571a7b6d5273b995bc1 /bin/chmod
parentf4bfdd619394d667ac10bf53f4ddb2b90b909f2f (diff)
downloadFreeBSD-src-68d3eccc3a5859b2996425370174c70d54228d41.zip
FreeBSD-src-68d3eccc3a5859b2996425370174c70d54228d41.tar.gz
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
Diffstat (limited to 'bin/chmod')
-rw-r--r--bin/chmod/chmod.c5
1 files changed, 3 insertions, 2 deletions
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') {
OpenPOWER on IntegriCloud