diff options
author | Jim Meyering <jim@meyering.net> | 2006-05-20 17:27:07 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-05-20 17:27:07 +0000 |
commit | ae5d9079f99a2957141513ff577c9227f75b9749 (patch) | |
tree | f46568c4c5c0b3d77735d36a3600f4b3808f8b65 /src | |
parent | 20c78772b31a7f831159c33965da236eb2418cd9 (diff) | |
download | coreutils-ae5d9079f99a2957141513ff577c9227f75b9749.tar.xz |
(main): Use FTS_PHYSICAL here, too.
Diffstat (limited to 'src')
-rw-r--r-- | src/chmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chmod.c b/src/chmod.c index 75d1b874f..ac517ba23 100644 --- a/src/chmod.c +++ b/src/chmod.c @@ -508,7 +508,7 @@ main (int argc, char **argv) root_dev_ino = NULL; } - ok = process_files (argv + optind, FTS_COMFOLLOW); + ok = process_files (argv + optind, FTS_COMFOLLOW | FTS_PHYSICAL); exit (ok ? EXIT_SUCCESS : EXIT_FAILURE); } |