summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-01-22canceled -> cancelledAaron Campbell
2000-01-22Spell it "usable", not "useable", for consistency across the man pages.Aaron Campbell
2000-01-22Add a couple of useful examples.Aaron Campbell
2000-01-22Use .Er macro when referring to errno error names.Aaron Campbell
2000-01-22Use .Va macro when referring to the global variable errno.Aaron Campbell
2000-01-22changes to GENERIC must be matched in GENERIC_SCSI3Theo de Raadt
2000-01-22syncTheo de Raadt
2000-01-22mislabelingTheo de Raadt
2000-01-22Fix pci probing for the powerpc port, it was previously only probing aDale S. Rahn
portion of the pci devices, 1,2,4,8,... instead of 1,2,3,4,5,6,7,8,... Updated to use indirect PCI configuration, so that pci-pci buses could be probed. And that devices > 11 on the pci bus could be detected.
2000-01-22Allow the address specified in the bus_space_map to either beDale S. Rahn
the absolute address requested, or the offset address, this is done by oring the requested address with the bus base address. Devices on the mac-io bus are bus base relative, but the pci devices are absolute addresses.
2000-01-22do not interpret a '-' character in a file or bootpath as the beginning ofDale S. Rahn
options, the dash character is only special if a space preceeds it. fixes booting from "/pci/mac-io/ide/disk/bsd".
2000-01-22Use .Va.Aaron Campbell
2000-01-22ie. -> i.e.,Aaron Campbell
2000-01-21syncTheo de Raadt
2000-01-21instead of blocking SIGINT, catch it ourselves, so that we can clean theTheo de Raadt
tty modes up and kill ourselves -- instead of our process group leader (scp, cvs, ...) going away and leaving us in noecho mode. people with cbreak shells never even noticed..
2000-01-21Make token_output not static.Federico G. Schwindt
2000-01-21Hide cursor if possiblePaul Janzen
2000-01-21Improve score table formatting (partially from malcolm@bits.bris.ac.ukPaul Janzen
via jsm@netbsd.org); remove a terminating \n from a warnx() (jsm@netbsd) and tidy a bit; check score file for corruption to avoid segfault.
2000-01-21use net/mask notation for the private networksTheo de Raadt
2000-01-21Work with files larger than 2 Gb; from NetBSD change by mycroft@netbsd.orgThorsten Lockert
2000-01-21Deal with getcwd() returning NULL.Todd C. Miller
Problem noted by Oleg Safiullin <form@vell.nsc.ru>
2000-01-21Remove unused function; jsm@netbsd.orgPaul Janzen
2000-01-21Fix comment.Angelos D. Keromytis
2000-01-21ip4 -> ipipAngelos D. Keromytis
2000-01-21Typo.Angelos D. Keromytis
2000-01-21Forgot to delete this.Angelos D. Keromytis
2000-01-21Rename the ip4_* routines to ipip_*, make it so GIF tunnels are notAngelos D. Keromytis
affected by net.inet.ipip.allow (the sysctl formerly known as net.inet.ip4.allow), rename the VIF ipip_input to ipip_mroute_input.
2000-01-21ip4.allow -> ipip.allowAngelos D. Keromytis
2000-01-21syncTheo de Raadt
2000-01-21Rename ip4.allow to ipip.allowAngelos D. Keromytis
2000-01-21Deal with getcwd() returning NULL. This code is not currentlyTodd C. Miller
compiled but dixing it now means that it won't get flagged again in a future audit. Noted by Oleg Safiullin <form@vell.nsc.ru>
2000-01-20syncTheo de Raadt
2000-01-20DEC 21150-BC bridge chip, AKA DC1111DTheo de Raadt
2000-01-20buffer overflow in readline(;) from espie@Michael Shalayeff
2000-01-20Use sysopen() when opening recover files. This is purely paranoiaTodd C. Miller
since we check that the filename matches '^recover' and hence the first character cannot play games with perl's magic open().
2000-01-20Fix problem pointed out by FreeBSD, regen temp file name each time, toMarc Espie
avoid races. Make use of basic Unix semantics, namely you can unlink a file while holding open fd on the data. Avoid all the mess of having to track useless file names around.
2000-01-20log with level log() not fatal() if peer behaves badly.Markus Friedl
2000-01-20use getpeername() in packet_connection_is_on_socket(), fixes sshd -i;Markus Friedl
from Holger.Trapp@Informatik.TU-Chemnitz.DE
2000-01-20track seconds more accurately. ok pjanzen@David Leonard
2000-01-20set[ug]id, not just setuidTheo de Raadt
2000-01-20Default value for -s option is ARG_MAX - 4096, not - 2048; enamiTheo de Raadt
2000-01-20when procfs is compiled in, if a setuid process has any of descriptors 0-2Theo de Raadt
open for write on procfs, close it (and, thus, open a /dev/null instead); problem reported by nergal@idea.avet.com.pl, fix by me, thanks for help from millert
2000-01-20getcwd() does not stuff an error string in buf on error, call strerror()Todd C. Miller
instead.
2000-01-19do not NULL dereference if fd_nfiles < 3Theo de Raadt
2000-01-19.MAIN is nothing special.Marc Espie
Silently ignoring all commands but the first set in a normal dependency is a generic `feature' of make.
2000-01-19cvs did a good job of merging changes, but the resulting configureMarc Espie
was not what autoconf would have produced starting from configure.in + our local changes... Regen'ed for correct configure.in line numbers.
2000-01-19Bug-fix: iteconfig was performing lots of iotcl on the console, but itMarc Espie
turns out all amiga sub-console handlers don't implement all those ioctl, but still could use iteconfig. So: * rework iteconfig's logic to only perform strictly required ioctl, * turn on -Wall and fix a few details, * add -b option to handle console blanker. Approved by niklas@
2000-01-19Inane conflicts:Marc Espie
- patch to function.c was badly indented. - invoke.texi no longer need to special-case OpenBSD, as 2.95.2 turns strict-aliasing off everywhere.
2000-01-19Update to 2.95.2Marc Espie
2000-01-19another possible workaround for NetBSD PR 9189.Jun-ichiro itojun Hagino