summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Merge code in common cases.dds2006-11-061-29/+6
| | | | | Verified by: New regression tests in tools/regression/usr.bin/jot MFC after: 2 weeks
* Replace opaque numeric bit flag values with #defined identifiers.dds2006-11-061-29/+38
| | | | | | | While there, add some missing FALLTHROUGH comments. Verified with: cmp(1) on the executable MFC after: 2 weeks
* Cross-reference libmemstat(3), malloc(9), uma(9).rwatson2006-11-021-4/+10
|
* Fix "1 day ago", "yesterday" and similar relative-time phraseskientzle2006-11-021-2/+2
| | | | | | | | when parsing dates. PR: bin/104934: bug in some date handling of bsdtar Reported by: Herve Boulouis MFC after: 3 days
* Fix a bug converting a variable from the numeric type to a string.ru2006-10-252-1/+23
| | | | | PR: bin/104795 MFC after: 3 days
* Document the NM environment variable.ru2006-10-251-1/+9
|
* Bizet was only born once.grog2006-10-241-1/+0
|
* Backout previous change (SIGSYS related). The fix has been applied to thesobomax2006-10-241-2/+0
| | | | | | proper place. Pointed out by: rwatson
* Ignore SIGSYS when BSM is compiled in. Otherwise, attempt to invoke su onsobomax2006-10-241-0/+2
| | | | | | | | | | | | | | | | | system that don't have audit framefork compiled into kernel or ia32 binary on amd64 system will result in SIGSYS. There is one place in su.c itself where it tries to check for errno != ENOSYS, but it has been a nop since su does not catch SIGSYS anyway. There are few other places in libbsm, where attempt to invoke audit syscal would result in SIGSYS if no audit support is present in the kernel, so that the only reliable method for now is to disable SIGSYS completely in the case when BSM is compiled in. In the long run, both direct invocation of audit-related syscalls and libbsm should be made more intellegent to handle the case when BSM is not compiled into the kernel gracefully. MFC after: 3 days (provided re@ approval)
* - Document the default disk block usage unit.ru2006-10-213-21/+48
| | | | | | - Add option -h, human-readable output. PR: docs/53732
* Better handle the -F case:marcel2006-10-211-7/+5
| | | | | | | | | | | | | | | | | o When stat(2) fails (i.e. the file has been moved) there's no new file with the same name yet, so keep showing the file that's open. This yields the same behaviour as -f, for which we don't stat(2). o When a new file with the same name has been created (i.e stat(2) succeeds but the inode or device numbers differ from the opened file), show any new lines in the opened file (i.e. the old or rotated file) before reopening the new file. These changes fix the observed behaviour that tail(1) doesn't show the very last lines of the rotated (log) files. PR: bin/101979 Tested by: Jos Backus <jos@catnook.com> MFC after: 2 months
* The vm.zone sysctl has gone; zone stats are now supplied by libmemstat(3).ru2006-10-211-4/+1
|
* - Add comma after REQUESTS field missed in previous commit.ru2006-10-211-2/+2
| | | | - Widen some columns; make width of header columns less cryptic.
* Print the number of allocation failures in UMA zones.glebius2006-10-211-4/+4
| | | | PR: kern/102940
* Document that jot(1), rs(1), and lam(1) first appeared in 4.2BSD.cperciva2006-10-203-0/+15
| | | | MFC after: 1 month
* Document that unexpand(1)'s -a and -t options are exclusive.ru2006-10-132-4/+3
| | | | PR: docs/85063
* - Document all character classes our tr(1) supports. [1]ru2006-10-131-2/+14
| | | | | | | | | - Mention that some of them are POSIX extensions. [2] PR: docs/85062 [1] Submitted by: Toby Peterson [1] Obtained from: wctype(3) [2] MFC after: 3 days
* At least one argument is required.ru2006-10-121-0/+3
|
* Saint George replaced Saint Edward as the patron Saint of Englandceri2006-10-121-4/+4
| | | | | | | | | | | | | somewhere around 1348. The revision log doesn't seem to go back quite that far, but I assume that the update to this file was forgotten in the celebrations. While, here, note which countries the other UK patron Saints hold patronage of. Sources include http://www.novareinna.com/festive/georgeday.html and http://www.newadvent.org/cathen/
* Memory utilization subscreen in "vmstat" display lists numbers in KB,ru2006-10-121-6/+6
| | | | | | | | | | not in number of pages. PR: docs/71690 Submitted by: Jan Srzednicki (A patch is only partially merged, the rest was already fixed by bde@ in rev. 1.51.)
* Don't go beyond the provided string when parsing the `\' character.ru2006-10-091-2/+4
| | | | | | PR: bin/99985 Submitted by: Nate Eldredge MFC after: 3 days
* Update the list of POSIX extensions.ceri2006-10-081-3/+5
| | | | | | PR: docs/103859 Submitted by: shaun MFC after: 1 week
* Add a missing new line at the end of the australian calendar file toflz2006-10-061-1/+1
| | | | | | | | | | suppress and error message. PR: conf/99490 Submitted by: Shaun Branden <shaun@pcuse.com> Approved by: cperciva (mentor) MFC after: 1 day Sponsored by: FreeBSD Test-Bugathon
* Adding my birthdayxride2006-10-011-0/+1
| | | | Approved by: tmclaugh
* o Remove an obsoleted (and commented out) entry.maxim2006-10-011-1/+0
| | | | | PR: conf/85143 Submitted by: Helge Oldach
* o Strip eol w/spaces.maxim2006-10-011-2/+2
|
* o Add a Gedenktag.maxim2006-10-011-0/+1
| | | | | | PR: conf/85143 Submitted by: Helge Oldach MFC after: 1 weeks
* Revise markup.ru2006-09-301-18/+21
|
* Markup nit.ru2006-09-291-1/+1
|
* Nits.bms2006-09-292-2/+2
| | | | Submitted by: ru
* Push removal of mrouted down to the rest of the tree.bms2006-09-292-2/+2
|
* Markup fixes.ru2006-09-2920-49/+66
|
* Do not chdir(2) until after setuid(2), otherwise "su - username" would failluoqi2006-09-291-6/+4
| | | | | | when root doesn't have the permission to enter target user's home directory. If set, PAM environment variable HOME will be used in chdir(2) instead of pwd->pw_dir, this allows pam_chroot module to continue to function.
* Set txrx_error to 1 when we reach abort. This makes the program correctly ↵matteo2006-09-281-0/+2
| | | | | | | | | | set the exit code. The PR has further details on this. PR: bin/103206 Submitted by: John Hickey <jjh-freebsd@daedalian.us> MFC after: 3 days
* - Add my birthday entry to the chronicle.stas2006-09-271-0/+1
| | | | Approved by: sem (mentor)
* Add a -a option as a no-op for Solaris compatibility, as brieflyceri2006-09-262-2/+8
| | | | | | | | discussed on src-committers. This is intentionally not included in the usage() function as it would confuse the output too much. Approved by: jhb MFC after: 1 week
* Fix both arguments to err().ru2006-09-261-1/+1
|
* Fix bug introduced in rev 1.23:marck2006-09-251-1/+6
| | | | | | | | pw_equal does not check crypted password field, so one cannot change crypted password keeping other fields intact. Approved by: des MCF after: 3 days
* Rename "-a" flag to "-A" in order to avoid conflicting with the "-a" flagrwatson2006-09-232-21/+20
| | | | | | | as found on Solaris. Requested by: ceri MFC after: 3 days
* Add a -a argument to id(1), which causes id(1) to print out processrwatson2006-09-233-3/+57
| | | | | | | | audit properties, including the audit user id. This can be quite helpful in debugging audit problems. Obtained from: TrustedBSD Project MFC after: 3 days
* Pass "-Wtraditional -Wno-system-headers" to compiler as two separatekan2006-09-211-1/+2
| | | | | arguments. GCC4 was unhappy with them combined, while GCC 3.4 did not care.
* Export tcps_rcvmemdrop available in 'struct tcpstat' with netstat(1).wkoszek2006-09-201-0/+1
| | | | | Requested by: Tomasz Pilat <tomasz.pilat (at) axelspringer.pl> Approved by: andre
* Add missing parentheses to fix a segmentation fault that is easilyiedowse2006-09-191-3/+3
| | | | | reproducable with `jot -s " " 400 1 | column -t'. The bug was present in the the original CSRG 'column -t' added in 1989.
* o Don't leak fd on error.maxim2006-09-181-4/+6
| | | | | | | o parselength() returns 0 or -1 so int is enough for its return type. Submitted by: Ighighi Ighighi, sheldonh MFC after: 3 weeks
* o optname, the third {set,get}sockopt(2) argument, is an enum, not a bitmap.maxim2006-09-181-1/+1
| | | | | | | Treat it accordingly. PR: bin/101642 MFC after: 3 weeks
* Update manpages for FILE 4.17.ru2006-09-172-39/+235
|
* Initial memory allocation for fields was off-by-one.ru2006-09-152-1/+19
| | | | | PR: bin/100443 MFC after: 3 days
* Don't require a space between -[fv] and its argument.ru2006-09-151-1/+44
| | | | | PR: bin/86514 MFC after: 3 days
* Remove references to the pam(8) manual page. It does not exist.joel2006-09-132-5/+3
| | | | | Requested by: novel Discussed with: brueffer, simon
* initialize variable (WARNS=6)charnier2006-09-131-0/+1
|
OpenPOWER on IntegriCloud