summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Fix login so that it exports environmental variables that are set by PAMnectar2001-02-091-0/+58
| | | | | | | | modules (via pam_putenv). The following variables will never be set in this fashion: SHELL, HOME, LOGNAME, MAIL, CDPATH, IFS, PATH any variable starting with `LD_'
* Fix style(9) bugs from previous commit: remove space after functionmikeh2001-02-081-6/+6
| | | | | | names and revert to char *[]. bde by: bde, imp
* Optimize gencat(1) sources in same manner as its libc part some time ago:phantom2001-02-083-299/+151
| | | | | | | | | | | | | | | . remove SYSV compatibility bits . sort #include's . ifdef unused code . cleanup BDECFLAGS warnings . fixed few typos in diagnostics messages . style(9) fixes as part of this cleanup I have changed all K&R declarations to ANSI style. Main reason for doing that was great mix of declarations used here - clean ASNI , clean K&R, ifdef'ed (both). Reviewed by: ache (mostly)
* Remove the manpage since the actual software was put in the Attic.obrien2001-02-081-459/+0
| | | | Noticed by: bde
* De-__P()-ify, convert K&R style declarations to ANSI onesmikeh2001-02-081-13/+8
|
* Prevent string overflows by using safer string functionsmikeh2001-02-081-21/+27
| | | | | | | | | Use tolower() rather than bit or-ing Sanity check user specified printf() format Exit when too many input files are given Remove register from variables Reviewed by: markm, imp
* mdoc(7) police: Change -filled displays (which just happenru2001-02-072-3/+3
| | | | | | to be the same as -ragged in the current implementation) to -ragged. With mdocNG, -filled displays produce the correct output, formatted and justified to both margins.
* Spellingcharnier2001-02-066-50/+25
| | | | Remove unused #includes
* Remove duplicate FreeBSD Idcharnier2001-02-062-6/+2
| | | | | Remoce unused #include Use imperative mode to start flag description
* Rework diagnostics textcharnier2001-02-062-5/+4
| | | | Remove unused #include
* mdoc(7) police: simplify construct.ru2001-02-061-6/+1
|
* Fix typo: compatability -> compatibility.asmodai2001-02-064-6/+6
| | | | Compatability is not an existing english word.
* Fix typo: seperate -> separate.asmodai2001-02-063-3/+3
| | | | Seperate does not exist in the english language.
* Fix typo: seperate -> separate.asmodai2001-02-062-4/+5
| | | | | | Seperate does not exist in the english language. Also add $FreeBSD$ to README.
* Convert if_multiaddrs from LIST to TAILQ so that it can be traversedphk2001-02-061-1/+1
| | | | | | backwards in the three drivers which want to do that. Reviewed by: mikeh
* Fix typo: wierd -> weird.asmodai2001-02-061-1/+1
| | | | There is no such thing as wierd in the english language.
* Fix tftpd and tftp to support file transfers of over 65535 blocksasmodai2001-02-022-2/+7
| | | | | | | (about 31 MB - 32 MB). Submitted (partially) by: Pascal Hofstee <daeron@wit401305.student.utwente.nl>
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-0137-137/+160
|
* De-__P()-ifywill2001-01-281-6/+6
| | | | Reviewed by: markm
* BDECFLAGS: constify; use proper types. Add $FreeBSD$, clean up #ifndef lint.will2001-01-281-10/+13
| | | | Reviewed by: markm
* Fix typophantom2001-01-252-4/+4
|
* Slightly re-word sentence to allow using .Nm macro without parameterphantom2001-01-251-1/+2
|
* Slightly re-word sentence to allow using .Nm macro without parameterphantom2001-01-251-4/+6
| | | | Use .St macro instead of hardcoding standard name
* Fix bogus checking of snprintf() by decreasing the remaining size of thewill2001-01-251-0/+3
| | | | | | | string after each successful snprintf() call. This makes apply(1) work *correctly*, although the whole snprintf() deal really should be redone. Bug noted by: nectar (about 3 weeks ago)
* Catch up to proc flag changes.jhb2001-01-241-3/+3
|
* Catch up to proc flag change.jhb2001-01-241-1/+1
|
* Catch up to new proc flags.jhb2001-01-241-1/+1
|
* Mention the -F in the usage().ru2001-01-241-1/+1
| | | | | PR: 24586 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
* Call pam_setcred.nectar2001-01-231-0/+4
| | | | Reviewed by: markm, months ago
* Add mibs to hold the number of forks since boot. New mibs are:ume2001-01-231-0/+8
| | | | | | | | | | | | | | vm.stats.vm.v_forks vm.stats.vm.v_vforks vm.stats.vm.v_rforks vm.stats.vm.v_kthreads vm.stats.vm.v_forkpages vm.stats.vm.v_vforkpages vm.stats.vm.v_rforkpages vm.stats.vm.v_kthreadpages Submitted by: Paul Herman <pherman@frenchfries.net> Reviewed by: alfred
* Add the -empty flag, from OpenBSD. It returns true if the directorypeter2001-01-235-2/+49
| | | | | | | | | | | is empty. There doesn't appear to be another easy way to do this. mobile# mkdir foo mobile# mkdir foo/bar mobile# mkdir bar mobile# find . -empty ./foo/bar ./bar
* Document that the -z option is equivalent to 'sysctl vm.zone'.des2001-01-231-1/+5
|
* Use the vm.zone sysctl rather that grope through the zone allocator'sdes2001-01-231-52/+15
| | | | internal data structures.
* Update vm zone list traversal for changes made to kernel. Note that thismjacob2001-01-231-2/+6
| | | | | | is ultimately silly because no locks are held in user space while traversing the list via kvm_reads... really, this should use the sysctl interface which *is* protected by a lock in the kernel.
* Fix numerous style(9) bugs: Put #define's before declarations; sort thewill2001-01-211-12/+11
| | | | | | | | | declarations & their arguments; use only one tab after types; restore the type of argv to sync with src tree style; sort new variables under main(); fix continuation indents; remove extra blank line before free()'s. Still to do: fix snprintf() handling as nectar & bde suggested to me. Submitted by: bde
* Fix style(9) bug; use ISDOT[DOT,]() macro available in util.c by movingwill2001-01-213-11/+9
| | | | | | | it to make.h so both dir.c and util.c can use it, although bde didn't particularly like this part of the idea, IMO it's cleaner than it was. Submitted by: bde
* Print out resid portion of MTIOCGET returned data.mjacob2001-01-211-3/+4
|
* Fix typo: -c -> -tache2001-01-211-1/+1
|
* Make "killall -t p0" really works.ache2001-01-211-1/+2
| | | | Old code works only if at least one process name additionly specified.
* Check strdup() return valuesjedgar2001-01-201-4/+8
| | | | Reviewed by: kris
* Minor grammar nit.ben2001-01-161-1/+1
| | | | | PR: 23742 Submitted by: Rich Morin <rdm@cfcl.com>
* man(7) -> mdoc(7).ru2001-01-161-165/+135
|
* mdoc(7) police: fixed broken references.ru2001-01-163-4/+2
|
* Correct spelling of millennium.dwmalone2001-01-161-1/+1
| | | | | PR: 24369 Submitted by: Tony Finch <dot@dotat.at>
* Prepare for mdoc(7)NG.ru2001-01-1612-14/+14
|
* mdoc(7) police: fix the weird construct.ru2001-01-151-2/+8
|
* The patch for the new calendar contained spaces instead of tabs.dwmalone2001-01-151-184/+184
| | | | I only noticed when I went to check that it worked OK in RELENG_3.
* /usr/libexec/cpp -> /usr/bin/cppache2001-01-131-1/+1
| | | | because of new rename to /usr/libexec/cpp0
* Have rpcgen actually tell us what cpp it is looking for (as it would if weobrien2001-01-101-1/+1
| | | | were SVR%).
* Use /usr/bin/cpp as on NetBSD, not /usr/libexec/cpp.obrien2001-01-091-3/+1
|
OpenPOWER on IntegriCloud