diff options
author | kientzle <kientzle@FreeBSD.org> | 2004-06-11 01:35:56 +0000 |
---|---|---|
committer | kientzle <kientzle@FreeBSD.org> | 2004-06-11 01:35:56 +0000 |
commit | 4125920b237c98c2a8cd60321baf22a82165469c (patch) | |
tree | 8dd8d79ba13a98e5a7d5218ae3b179b7eacaf3bf /usr.bin/tar/bsdtar.c | |
parent | 01cc4d4558717fbd092683058a1c66ee4dcd7904 (diff) | |
download | FreeBSD-src-4125920b237c98c2a8cd60321baf22a82165469c.zip FreeBSD-src-4125920b237c98c2a8cd60321baf22a82165469c.tar.gz |
Oops: gtar's --dereference should be a synonym for bsdtar's -L, not -H.
Pointed out by: devel/nspr port
Thanks to: Kris Kennaway
Diffstat (limited to 'usr.bin/tar/bsdtar.c')
-rw-r--r-- | usr.bin/tar/bsdtar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tar/bsdtar.c b/usr.bin/tar/bsdtar.c index 7092fc0..7a46840 100644 --- a/usr.bin/tar/bsdtar.c +++ b/usr.bin/tar/bsdtar.c @@ -86,7 +86,7 @@ const struct option tar_longopts[] = { { "cd", required_argument, NULL, 'C' }, { "confirmation", no_argument, NULL, 'w' }, { "create", no_argument, NULL, 'c' }, - { "dereference", no_argument, NULL, 'H' }, + { "dereference", no_argument, NULL, 'L' }, { "directory", required_argument, NULL, 'C' }, { "exclude", required_argument, NULL, OPTION_EXCLUDE }, { "extract", no_argument, NULL, 'x' }, |