summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Bumped the document date.ru2004-05-192-2/+2
|
* Bumped the document date.ru2004-05-191-2/+2
| | | | Fixed the grammar nit.
* Bumped document date.ru2004-05-191-2/+2
| | | | Fixed markup nit.
* Bumped document date.ru2004-05-191-2/+2
| | | | Fixed the grammar nit.
* Markup nits.ru2004-05-191-7/+7
|
* Bumped document date.ru2004-05-191-6/+8
| | | | Dealt with hard sentence breaks and whitespace at EOL.
* Fixed document date.ru2004-05-191-1/+1
|
* Bumped document date.ru2004-05-191-16/+16
| | | | | Fixed a bunch of hyphen misspellings. Fixed one warning.
* Restore part of the word that got (accidentally) removed.ru2004-05-191-2/+2
| | | | Removed whitespace at EOL.
* Markup nits.ru2004-05-191-8/+5
|
* Bumped document date.ru2004-05-191-2/+3
| | | | Removed hard sentence break.
* Default is to restore timestamps, even when operating as root. <sigh>kientzle2004-05-191-1/+1
|
* Fix a segfault when looking up a non-existent group.kientzle2004-05-181-1/+1
|
* Bump document date on behalf of the -e option.ru2004-05-181-2/+2
| | | | Spell "ID" correctly.
* Bump document date on behalf of the -E option.ru2004-05-181-1/+1
|
* Added -u to the SYNOPSIS.ru2004-05-181-0/+1
|
* Bump document date on behalf of the -u option.ru2004-05-181-2/+2
|
* Bump document date on behalf of the -M option.ru2004-05-181-1/+1
|
* Build/install gprof on amd64 as well, after repocopying the MD bits.peter2004-05-182-1/+4
| | | | Not that it has anything to process yet, but that comes next.
* Accept (but ignore) GNU tar's -B option. bsdtar neverkientzle2004-05-181-2/+8
| | | | needs it, but it does no harm for people to specify it.
* Don't depend on NULL's expansion being a pointer, cast it before it is passedstefanf2004-05-181-1/+1
| | | | | | to variadic functions. Approved by: das (mentor)
* Set errno to 0 before calling getpwuid/getgrgid, so that errorkientzle2004-05-171-0/+2
| | | | messages will be displayed only when there is, in fact, an error.
* Speed up safe_fprintf by copying to a temp buffer, then writingkientzle2004-05-171-13/+32
| | | | blocks at a time, rather than using putc().
* Propagate struct bsdtar down into a lot more places.kientzle2004-05-176-138/+137
| | | | Move global progname variable into struct bsdtar.
* Refactor name caching to use a common piece of code for uname_cache andkientzle2004-05-172-88/+113
| | | | | gname_cache. Cache negative lookups to dramatically improve performance building archives containing nonexistent uid/gid.
* Make symlink protection a bit more useful:kientzle2004-05-173-4/+17
| | | | | | * Remove terminal symlinks so they can be replaced. * If -U, remove intermediate symlinks as well * Otherwise, refuse the extraction
* Update manpage to track new security features.kientzle2004-05-171-28/+125
|
* Remove spurious semicolons. Outside of functions they are actually errors butstefanf2004-05-161-1/+1
| | | | | | | | GCC doesn't warn about them without -pedantic. Approved by: das (mentor) PR: 56649 Reviewed by: md5
* snafu, exchanged the descriptions of -maxdepth and -mindepth.eik2004-05-161-5/+5
| | | | Noticed by: ru
* Insert "arm" between "amd64" and "powerpc"cognet2004-05-141-2/+2
| | | | Requested by: bde
* Fixed total disorder of MD includes.bde2004-05-141-10/+10
| | | | Disorder buffer overflowed by: arm commit
* Bump the .Dd value.joerg2004-05-141-7/+14
| | | | | | | Update xrefs to more contemporary items. Requested by: ru, green MFC after: 1 week
* When I wrote this man page more than 5 years ago, I simply didn'tjoerg2004-05-141-2/+4
| | | | | | | | | understand the true symmetric nature of Enigma, so my description of ``automatically detects that the input is encrypted'' was simply wrong. Replace that by a more accurate description of why feeding the ciphertext again into the engine will decrypt it. MFC after: 1 week
* Use four spaces instead of tab for second level indentation.cognet2004-05-141-1/+1
| | | | Requested by: ru
* Define PTRDIFF_IS_LONG and SIZEOF_IS_ULONG for arm.cognet2004-05-141-0/+3
|
* Some arm bits for gprof.cognet2004-05-143-0/+62
|
* Do not build truss on arm.cognet2004-05-141-1/+2
|
* -maxdepth and -mindepth are global variableseik2004-05-141-3/+16
| | | | | | PR: 66613 Approved by: ru MFC after: 3 days
* Output style nit.ru2004-05-121-1/+1
|
* Do not attempt ro read more than sizeof(buf) from stdin.cognet2004-05-101-0/+2
|
* It was pointed out[0] that ctags(1) uses some potentially dangerouscjc2004-05-071-16/+45
| | | | | | | | | | | | | | system(3) calls where user-supplied data is used with no sanity checking. Since ctags(1) is not setuid and is not likely to be used in a privileged situation, this is not a big deal. However, the fix is relatively easy and less ugly than the current code, let's be safe. (I'm sure there are about 2^134 other system(3) calls like this out there.) [0] On freebsd-security by Roman Bogorodskiy <bogorodskiy@inbox.ru> with subject "ctags(1) command execution vulnerability." MFC after: 3 days
* Use a proper protoype to declare interp() and move it to tip.h. Fix anstefanf2004-05-062-2/+2
| | | | | | invocation with a wrong number of arguments. Approved by: das (mentor)
* Add --unlink and --unlink-first synonyms for -Ukientzle2004-05-051-30/+32
| | | | Make indentation of tar_longopts array more consistent.
* Add my birthday.stefanf2004-05-051-0/+1
| | | | Approved by: das (mentor)
* Contrariwise, Linux sys/stat.h doesn't define mode_t and friends,kientzle2004-05-041-0/+1
| | | | even though POSIX requires it. <sigh>
* Include local copies of fts.c and fts.h to be used ONLY on non-FreeBSDkientzle2004-05-042-0/+1342
| | | | | | | systems. The fts.h here is an exact copy of include/fts.h (except for an initial explanatory comment and the revision tags, of course). The fts.c here is slightly modified from lib/libc/gen/fts.c so it can compile correctly on non-FreeBSD systems.
* Add "-M" argument to id(1), which permits the id command to be usedrwatson2004-05-032-3/+46
| | | | | | | | to print the MAC label of the current process. "-M" selected as that's what is used in Trusted IRIX. Obtained from: TrustedBSD Project Sponsored by: DARPA, McAfee Research
* For portability, don't rely on libc's strmode(3). <sigh>kientzle2004-05-033-1/+53
|
* Correct copy/paste error in Linux nodump support.kientzle2004-05-031-3/+4
| | | | | Thanks to: Juergen Lock for his continuing patience while I botch his patches.
* Style: Use single tab after #definekientzle2004-05-023-16/+16
|
OpenPOWER on IntegriCloud