diff --git a/usr.bin/ar/ar.1 b/usr.bin/ar/ar.1 --- a/usr.bin/ar/ar.1 +++ b/usr.bin/ar/ar.1 @@ -23,7 +23,7 @@ .\" .\" $FreeBSD$ .\" -.Dd December 29, 2021 +.Dd January 3, 2022 .Dt AR 1 .Os .Sh NAME @@ -314,8 +314,7 @@ in the order in which they appear in the archive, one per line. If no files are specified, all files in the archive are listed. .It Fl T -Deprecated alias for -.Fl f . +This option is accepted but ignored. In other implementations of .Nm , .Fl T diff --git a/usr.bin/ar/ar.c b/usr.bin/ar/ar.c --- a/usr.bin/ar/ar.c +++ b/usr.bin/ar/ar.c @@ -227,8 +227,7 @@ bsdar->options |= AR_S; break; case 'T': - warnx("-T is deprecated"); - bsdar->options |= AR_TR; + /* ignored */ break; case 't': set_mode(bsdar, opt);