summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2000-12-22repair same static buf oflow in printf(1) and printf(1) internal inside csh(1)Theo de Raadt
2000-12-19do not reset nonblock if shell is not interactive, from crossd@cs.rpi.eduMarkus Friedl
(i should have commited this about 6 months ago, ok millert@).
2000-11-21Bug fixes from pdksh-5.2.14-patches.1:Todd C. Miller
o set -x dumps core (shf.c); o "typeset -r foo=bar" fails saying foo is readonly (var.c).
2000-11-21Add missing break that broke 'kill -s SIGNAME', PR #1495Todd C. Miller
Fix from Hiroyuki.HORINOKUCHI@nrj.ericsson.se
2000-11-16Some .Li makes this look prettier.Aaron Campbell
2000-11-10Use .Nm instead of spelling out "cpio".Aaron Campbell
2000-11-10- Prefer COMPATIBILITY section after SEE ALSO section.Aaron Campbell
- Insert a missing comma.
2000-11-10- Section shuffling.Aaron Campbell
- Some .Nm trimming. - Reword a sentence for consistency with the chmod(1) man page. - Insert a missing comma.
2000-11-10Use better grammar.Aaron Campbell
2000-11-09- Some section shuffling: conform to the standard order documented in mdoc(7)Aaron Campbell
- .Sh AUTHOR -> .Sh AUTHORS
2000-11-09Insert some missing commas.Aaron Campbell
2000-11-09Fix an off-by-one-hour error that would occur when changing the time acrossAaron Campbell
DST (Daylight Saving Time); from NetBSD.
2000-11-09- Don't use general text domain macros in literal block displays.Aaron Campbell
- Beautify the SYNOPSIS; somewhat inspired by a similar change in NetBSD.
2000-11-09Change all option list specifications to ".Bl -tag -width Ds". Most manAaron Campbell
pages just needed their -width parameter tweaked to "Ds", which provides a nice width of 6 constant characters. For consistency more than anything.
2000-11-09typo, inspired by deraadt@Niels Provos
2000-11-08Escape the quotation marks in the first example so they show; deraadt@Aaron Campbell
2000-11-08- Get rid of ".Sh OPTIONS" and always use the standard options list intro.Aaron Campbell
- Move some BUGS/CAVEATS to the end of the man pages where they should go. - Correct some .Nm usage.
2000-10-30Use mkstemp(3) for here document (<<) temporary files instead of $$Todd C. Miller
Problem noted by proton@ENERGYMECH.NET
2000-10-19Where we talk about $$, also say mention that PIDs are not safe to use forAaron Campbell
generating temporary file names, and point people to mktemp(1) instead.
2000-10-18sort out printf formats according to types, 64bit arithmetics in ffs_df; ↵Michael Shalayeff
millert@ ok
2000-10-18remention -TEric Jackson
2000-10-18Properly introduce options.Aaron Campbell
2000-10-18typoAaron Campbell
2000-10-18Add some rudimentary EXAMPLES sections and standardize the way we displayAaron Campbell
existing EXAMPLES sections.
2000-10-12Compare the return from mmap with MAP_FAILED, do not cast to int and comapreArtur Grabowski
with -1.
2000-10-07remove non-existant T optionEric Jackson
2000-10-06Sync usage() with man page.Aaron Campbell
2000-10-06- Get rid of more short lines.Aaron Campbell
- Fix a formatting error I missed in the last commit.
2000-10-06- Fix numerous formatting glitches.Aaron Campbell
- Convert plain reference to an mdoc macro'd reference. - Get rid of some annoying short lines, which make the man src hard to read. - parenthesis -> parentheses
2000-09-15check return value for setenv(3) for failure, and deal appropriatelyTheo de Raadt
2000-09-04even better fix for importpath(); from christos@zoulas.com; millert@ okMichael Shalayeff
2000-09-03Boring... Add :L modifier to all tweakable variables tests.Marc Espie
Closes PR 1246
2000-08-30prevent core dumps when stderror() is called before reslab is initializedMichael Shalayeff
2000-08-20Use mkstemp(), ryker@ryker.orgTodd C. Miller
2000-08-05remove blank linePaul Janzen
2000-07-31make -h option work again, it was left out on the getopt stringEric Jackson
2000-07-31remove incorrect space, as enami@netbsd.orgPaul Janzen
2000-07-23oops, what was i thinking?Eric Jackson
2000-07-23un .Xr chflagsEric Jackson
2000-07-19bye-byeMichael Shalayeff
2000-07-19merge chflags(1) into chmod.Michael Shalayeff
also, use new strtofflags, avoid ls/stat_flags.c usage. millert@ ok
2000-07-19new strtofflags/fflagstostrMichael Shalayeff
2000-07-10Xr chflags(1)Aaron Campbell
2000-07-06fix another, similar typoAaron Campbell
2000-07-06typoAaron Campbell
2000-06-30warnx?/errx? paranoia (use "%s" not a bare string unless it is aTodd C. Miller
constant). These are not security holes but it is worth fixing them anyway both for robustness and so folks looking for examples in the tree are not misled into doing something potentially dangerous. Furthermore, it is a bad idea to assume that pathnames will not include '%' in them and that error routines don't return strings with '%' in them (especially in light of the possibility of locales).
2000-06-28use strtol() in getn(); millert@ and meMichael Shalayeff
2000-06-28Use strtol(), not atoi() when converting a decimal string to an integer.Todd C. Miller
That way we can catch typos when people say 'kill -HUP 65Q' and not send the signal to process 65. Theo and myself.
2000-06-28document signal 0Theo de Raadt
2000-06-18Mark kernel threads as system processes. Make ps hide them by default,Niklas Hallqvist
show them with -k. Do not try to show RSS based values for them as they mess up column alignment. vmstat -f now shows kernel threads separately from rforks too.