diff options
author | Jim Meyering <jim@meyering.net> | 2006-05-27 14:44:41 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-05-27 14:44:41 +0000 |
commit | 19c28b06a09bcb2763280cc6193a5fd158cefdb1 (patch) | |
tree | 6cfac3d15eae95a8025cce9bb0f2f94eb30f3a24 /src/chgrp.c | |
parent | 83e40cc849836e2d83d5f7eec042412b8d417881 (diff) | |
download | coreutils-19c28b06a09bcb2763280cc6193a5fd158cefdb1.tar.xz |
Support new options: --preserve-root and --no-preserve-root.
Somehow this program was skipped when those options were added to chown,
chmod, and rm. Reported by vaqflabuopac@spammotel.com in
<http://bugs.debian.org/365656>.
Diffstat (limited to 'src/chgrp.c')
-rw-r--r-- | src/chgrp.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/chgrp.c b/src/chgrp.c index e26308db9..740f4dacb 100644 --- a/src/chgrp.c +++ b/src/chgrp.c @@ -30,6 +30,7 @@ #include "group-member.h" #include "lchown.h" #include "quote.h" +#include "root-dev-ino.h" #include "xstrtol.h" /* The official name of this program (e.g., no `g' prefix). */ @@ -53,6 +54,8 @@ static char *reference_file; enum { DEREFERENCE_OPTION = CHAR_MAX + 1, + NO_PRESERVE_ROOT, + PRESERVE_ROOT, REFERENCE_FILE_OPTION }; @@ -62,6 +65,8 @@ static struct option const long_options[] = {"changes", no_argument, NULL, 'c'}, {"dereference", no_argument, NULL, DEREFERENCE_OPTION}, {"no-dereference", no_argument, NULL, 'h'}, + {"no-preserve-root", no_argument, NULL, NO_PRESERVE_ROOT}, + {"preserve-root", no_argument, NULL, PRESERVE_ROOT}, {"quiet", no_argument, NULL, 'f'}, {"silent", no_argument, NULL, 'f'}, {"reference", required_argument, NULL, REFERENCE_FILE_OPTION}, @@ -164,6 +169,7 @@ Examples:\n\ int main (int argc, char **argv) { + bool preserve_root = false; gid_t gid; /* Bit flags that control how fts works. */ @@ -213,6 +219,14 @@ main (int argc, char **argv) dereference = 1; break; + case NO_PRESERVE_ROOT: + preserve_root = false; + break; + + case PRESERVE_ROOT: + preserve_root = true; + break; + case REFERENCE_FILE_OPTION: reference_file = optarg; break; @@ -288,6 +302,15 @@ main (int argc, char **argv) gid = parse_group (group_name); } + if (chopt.recurse & preserve_root) + { + static struct dev_ino dev_ino_buf; + chopt.root_dev_ino = get_root_dev_ino (&dev_ino_buf); + if (chopt.root_dev_ino == NULL) + error (EXIT_FAILURE, errno, _("failed to get attributes of %s"), + quote ("/")); + } + ok = chown_files (argv + optind, bit_flags, (uid_t) -1, gid, (uid_t) -1, (gid_t) -1, &chopt); |