summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Use the URL instead of the output file name when reporting errors relatingdes2002-11-271-6/+6
| | | | | | | | to the remote document. PR: 33856 MFC after: 1 week Approved by: re
* As warned on freebsd-current@, remove the perl wrapper from /usr/src.obrien2002-11-274-142/+0
| | | | | | | | | The /usr/bin/perl wrapper isn't solving many of the problems it was imported to deal with. There are limitations to it that don't have a clear "fix". Reviewed by: markm, kris Extorted approval from: re(jhb)
* tip(1) no longer uses modems(5).ru2002-11-271-143/+0
| | | | | Reviewed by: markm Approved by: re
* Really merge from OpenBSD import (should have been done a year ago).ru2002-11-271-185/+300
| | | | | Reviewed by: markm Approved by: re
* mdoc(7) police:ru2002-11-261-1/+3
| | | | | | | | Revert to using the .Tn POSIX and .Tn ANSI instead of \*[Px] and \*[Ai] strings; using these strings is unsafe in troff mode, as they include a change in a font size. Approved by: re
* mdoc(7) police: markup and spelling.ru2002-11-261-4/+7
| | | | Approved by: re
* mdoc(7) police: markup polishing.ru2002-11-2621-65/+58
| | | | Approved by: re
* mdoc(7) police: back out unproved changes from previous revision.ru2002-11-261-1/+1
| | | | Approved by: re
* mdoc(7) police:ru2002-11-261-8/+8
| | | | | | | Restore (once again) my fixes from revision 1.20 that got lost in revision 1.25 merge. Approved by: re
* mdoc(7) police: laundry.ru2002-11-261-120/+152
| | | | Approved by: re
* mdoc(7) police: nit.ru2002-11-261-1/+1
| | | | Approved by: re
* mdoc(7) police: back out unproved changes in previous revision;ru2002-11-261-4/+4
| | | | | | | descriptions in the FILES section should be full sentences, as demonstrated in mdoc(7) and /usr/share/examples/mdoc/. Approved by: re
* mdoc(7) police: markup nits, "The .Nm utility".ru2002-11-261-17/+12
| | | | Approved by: re
* mdoc(7) police: bump document date, use the canonical option list width,ru2002-11-261-17/+11
| | | | | | removed a bunch of extraneous .Pp and .Dq calls. Approved by: re
* mdoc(7) police: markup polishing.ru2002-11-261-17/+5
| | | | Approved by: re
* mdoc(7) police: markup polishing.ru2002-11-261-15/+7
| | | | Approved by: re
* mdoc(7) police: markup polishing.ru2002-11-261-3/+3
| | | | Approved by: re
* Make this work under non-C locales.ru2002-11-251-4/+5
| | | | | PR: misc/45460 Approved by: re
* The second try a committing the bluetooth codejulian2002-11-204-0/+579
| | | | | | | | | | | | | | | | Has been seen to work on several cards and communicating with several mobile phones to use them as modems etc. We are still talking with 3com to try get them to allow us to include the firmware for their pccard in the driver but the driver is here.. In the mean time it can be downloaded from the 3com website and loaded using the utility bt3cfw(8) (supplied) (instructions in the man page) Not yet linked to the build Submitted by: Maksim Yevmenkin <myevmenk@exodus.net> Approved by: re
* Be more careful when parsing arguments.eric2002-11-201-2/+6
| | | | | PR: 45476 MFC after: 5 days
* Add description of a number of "default" files that have been addedgrog2002-11-191-1/+19
| | | | over the last few years.
* Add file for South African holidays.grog2002-11-193-6/+25
| | | | Submitted by: Tony Harverson <Tony@epages.net>
* Install /usr/libexec/makewhatis.local and /usr/libexec/catman.local.ru2002-11-181-3/+8
| | | | | | This has slipped through the cracks of The Great Perl Script Rewrite. Repocopied by: joe
* A little bit of anti-foot-shooting. Use utimes(2) rather thanpeter2002-11-151-8/+11
| | | | | | | | | the deprecated utime(3). utimes(2) uses timeval, but utime(3) uses time_t's. If you do bad things (like I did) by mixing up include files with libc, then install can do strange things if you mismatch the time_t stuff. utime() is emulated entirely within libc. Approved by: re (jhb)
* utmp.ut_time and lastlog.ll_time are explicitly int32_t rather thanpeter2002-11-151-3/+5
| | | | | | | | | | | | time_t. Deal with the possibility that time_t != int32_t. This boils down to this sort of thing: - time(&ut.ut_time); + ut.ut_time = time(NULL); and similar for ctime(3) etc. I've kept it minimal for the stuff that may need to be portable (or 3rd party code), but used Matt's time32 stuff for cases where that isn't as much of a concern. Approved by: re (jhb)
* Don't set atime / mtime if we don't have an output file, which can happendes2002-11-131-2/+2
| | | | in certain failure scenarii (mostly DNS trouble).
* Take __FreeBSD_version into account when BOOTSTRAPPING.ru2002-11-133-10/+10
|
* Don't divide by zero to calculate the ETA, even if we haven't gottenfenner2002-11-121-1/+1
| | | | any data in 30 seconds.
* kenv(1) is WARNS=6 clean.mux2002-11-111-1/+1
|
* Add support for the Latin American and Caribbean IP address Regionalmike2002-11-102-6/+16
| | | | | | | | | Registry (LACNIC) with the -l option and support for recursive IP address searches. PR: 44448 Submitted by: David Wolfskill <david@catwhisker.org> MFC after: 1 week
* o Build truss on all architectures.marcel2002-11-101-5/+7
| | | | | o xlint is still excluded from the ia64 build, but now in a way that doesn't corrupt ordering for other platforms.
* Port to ia64. It builds, but usability is very limited.marcel2002-11-103-0/+349
|
* Various cleanups of truss:dwmalone2002-11-096-97/+121
| | | | | | | | | | | 1) Missing include. 2) Constness. 3) ANSIfication. 4) Avoid some shadowing. 5) Add/clarify some error messages. 6) Some int functions were using return without a value. 7) Mark some parameters as unused. 8) Cast a value we know is non-negative to a size_t before comparing.
* Check if name is NULL before we strcmp the syscall name. This wasdwmalone2002-11-091-1/+1
| | | | | sometimes triggered if you began trussing a process while it was in a syscall, as the name is filled in when the syscall is made.
* #include <err.h> to make yes warns clean again.dwmalone2002-11-091-0/+1
|
* Convert some broken cases where Error is called, but we try to continue,jmallett2002-11-081-17/+5
| | | | | | | | | | | | to Fatal errors, because the logic that we use to try to continue is far too broken, and makes things look and act weird, because we end up pointing past the end of a buffer boundry into freed memory in the caller, as we don't come close to setting the lengthPtr to a sane value. Reviewed by: make@ (This only changes failure cases which would have died horrid deaths to explicit clean death failure cases.)
* Detect and exit on write errors.tjr2002-11-081-4/+7
|
* Don't exit with success after timeout during authentication.fenner2002-11-071-0/+4
|
* Remove entry for All Saints' in Portugal. While it's correct, Allgrog2002-11-031-1/+0
| | | | | Saints' is celebrated in all Christian countries, and there's already another entry.
* Another buffer overflow similar to the recent one in mkstr(1).tjr2002-11-011-0/+2
|
* Remove claim that pi and ex use mkstr; pi is long gone, and nex doesn'ttjr2002-11-011-6/+1
| | | | use it.
* Zap another buffer overflow, this time in the parser.tjr2002-11-011-0/+2
| | | | MFC after: 2 weeks
* Avoid buffer overflow when constructing filenames.tjr2002-11-011-3/+13
|
* Document the confusing behavior that the .if conditional defaultsru2002-11-011-0/+1
| | | | | to defined(), e.g., ``.if 1'' is equivalent to ``.if defined(1)'', which is only true when the ${1} variable is defined.
* o Remove $Id$ from copyright; there's $FreeBSD$,marcel2002-11-012-18/+8
| | | | | | | o Remove static function uuid_print(); use uuid_to_string(3) in combination with printf(3) to achieve the same, o Remove unneeded includes, o Add a reference to uuid(3) to the manpage.
* Variables that come in in and out pairs should be named accordingly.fanf2002-11-011-68/+84
| | | | | | Different code that processes the input in similar ways should be called in similar ways. File-local stuff should be static. Output errors should be checked for. Diffs sometimes have to be big.
* Be much more paranoid about where uudecode writes its output, especiallyfanf2002-11-011-7/+36
| | | | | | | when the filename comes from the untrusted input. This is a work-around for careless people who don't routinely check the begin line of the file or run uudecode -i and instead report "vulnerabilities" to CERT. http://www.kb.cert.org/vuls/id/336083
* Instead of abusing stdin and stdout, use our own file pointers.fanf2002-11-011-14/+22
| | | | Check for errors when closing the output.
* Back out previous commit - it was not well thought out.sobomax2002-10-311-1/+1
| | | | | Clue beaten in by: ume Pointy hat to: sobomax
* Document the new behavior of -C with respect to inode-change-time.ru2002-10-311-2/+4
| | | | Document that -p also preserves the access time of the source.
OpenPOWER on IntegriCloud