Add --no-same-owner as a synonym for -o.

Note that bsdtar's -o (which follows SUSv2) is not the same as GNU tar's -o.
In GNU tar, -o and --no-same-owner are not synonyms.

Pointed out by: Kris Kennaway (required by xpenguins port)
This commit is contained in:
Tim Kientzle 2004-05-22 17:49:54 +00:00
parent 12957d4991
commit 26eddc7f41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129595

View File

@ -101,6 +101,7 @@ const struct option tar_longopts[] = {
{ "modification-time", no_argument, NULL, 'm' },
{ "nodump", no_argument, NULL, OPTION_NODUMP },
{ "norecurse", no_argument, NULL, 'n' },
{ "no-same-owner", no_argument, NULL, 'o' },
{ "preserve-permissions", no_argument, NULL, 'p' },
{ "read-full-blocks", no_argument, NULL, 'B' },
{ "same-permissions", no_argument, NULL, 'p' },