diff options
author | cperciva <cperciva@FreeBSD.org> | 2006-12-20 06:56:25 +0000 |
---|---|---|
committer | cperciva <cperciva@FreeBSD.org> | 2006-12-20 06:56:25 +0000 |
commit | 33a96f5f529fc02f3e4b38cd6ce857c46996bd89 (patch) | |
tree | e5e662e9b8b9dc15b33659caf6189f5afcddd801 /usr.bin/tar | |
parent | db978a9df56cd9de82adb2b745e3a0e3963cbb9b (diff) | |
download | FreeBSD-src-33a96f5f529fc02f3e4b38cd6ce857c46996bd89.zip FreeBSD-src-33a96f5f529fc02f3e4b38cd6ce857c46996bd89.tar.gz |
Remove -F option from getopts string -- this option has never done
anything apart from invoking usage(), and apparently slipped in by
accident.
Approved by: kientzle
MFC after: 3 days
Diffstat (limited to 'usr.bin/tar')
-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 07a923b..2619502 100644 --- a/usr.bin/tar/bsdtar.c +++ b/usr.bin/tar/bsdtar.c @@ -89,7 +89,7 @@ static void version(void); * non-option. Otherwise, GNU getopt() permutes the arguments and * screws up -C processing. */ -static const char *tar_opts = "+Bb:C:cF:f:HhI:jkLlmnOoPprtT:UuvW:wX:xyZz"; +static const char *tar_opts = "+Bb:C:cf:HhI:jkLlmnOoPprtT:UuvW:wX:xyZz"; /* * Most of these long options are deliberately not documented. They |