summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2000-10-19Repair two typos; caught by gluk@ptci.ru.Aaron Campbell
2000-10-18fdopen(3) takes two args, not one; spotted by fries@. Also, move the CAVEATSAaron Campbell
section to the end like most man pages.
2000-10-18Another round of man page cleanup, this time to remove more hard sentenceAaron Campbell
breaks and getting rid of short lines, making these files easier to work with.
2000-10-17damn it, i have had it with this untested weak shitTheo de Raadt
2000-10-16fix missing closedir() that could allow apacheSSL to leak fd's,Bob Beck
from netbsd (taca) credited to TAKANO Yuji <takachan@running-dog.net>
2000-10-16re-add weak sparc support; d@Theo de Raadt
2000-10-14put hosts.allow and hosts.deny in as Nm entriesTheo de Raadt
2000-10-14put tcp wrapper into Nd lineTheo de Raadt
2000-10-14oops; sigh@kuzirabekon.econ.nagasaki-u.ac.jpTheo de Raadt
2000-10-14document net.inet.tcp.rstppslimit.Jun-ichiro itojun Hagino
2000-10-14tcp wrapper support for IPv6. from netbsd.Jun-ichiro itojun Hagino
TODO: scoped address support may need more consideration (we are taking safer side now - rejects too much).
2000-10-13vax support; checked by beck.Hugh Graham
2000-10-13Changes to the powerpc startup files to work in a more typical ELFDale Rahn
manner. the linker knows about the magic function _init and _fini and will create a .dynamic tag to point to those symbols in the executable/shared libraries. Take advantage of that fact to allow ld.so to easily find the appropriate ctors/dtors calls for shared libraries Since the crtbeginS.c now contains executable code, it must be compiled with -fPIC. Rename the __init and __fini functions to _init/_fini so the linker will locate them.
2000-10-12MAP_FAILED, not -1.Artur Grabowski
2000-10-12- RCS id police!Brad Smith
- remove unnecessary CPPFLAGS and hardcoded optimization level in CFLAGS - fix execution of the benchmarks, ensure using nice from /usr/bin instead of the built-in which will fail, always use sh and try to run the binaries from the obj dir if it's used.
2000-10-12refix breakage in previous commit, d@ forgot to remove his change whileBrad Smith
testing libpthread on sparc (which is not built by default ... yet).
2000-10-11back out weak symbols; deraadt@David Leonard
2000-10-10Fix typo; claudio@core-sdi.com.Federico G. Schwindt
2000-10-10mention icmp{,6}.errppslimitJun-ichiro itojun Hagino
2000-10-10Don't ignore $TERMCAP, $TERMINFO, $TERMINFO_DIRS, $TERMPATH, and $HOMETodd C. Miller
if root but not setugid. Fix select usage to deal with an arbitrary number of fd's. This code is not compiled since we use poll(2).
2000-10-10Fresh infinity from NetBSD.Hugh Graham
2000-10-10^vax^__vax__Hugh Graham
2000-10-09Sync.Angelos D. Keromytis
2000-10-09Don't call cgetset() on $TERMCAP. There are no known problems (that I amTodd C. Miller
aware of) wrt termcap parsing but it is better to be on the safe side.
2000-10-09Add check for NUL home that got missed in the last mergeTodd C. Miller
2000-10-08update to ncurses-5.1-20001007Todd C. Miller
2000-10-06weaken syscall symbols in libc by defaultDavid Leonard
2000-10-06Add a CAVEATS section to warn programmers that shell meta-characters willAaron Campbell
be passed to the command interpreter.
2000-10-05missed it by That MuchDavid Leonard
2000-10-05Use volatile on the __asm__ directives, do not allow the compiler to reorderDale S. Rahn
or optimize out any of the assembly statements.
2000-10-04use weak symbols in sparc's libcDavid Leonard
2000-10-04teach tags about SYSENTRYDavid Leonard
2000-10-04oopsDavid Leonard
2000-10-04switch to _machdep_switch() instead of setjmp/longjmp. For some reason this ↵David Leonard
fixes sparc threads.
2000-10-04if fstat fails fails, as it will on some sockets, close anyway.David Leonard
2000-10-04bit of a cleanupDavid Leonard
2000-10-03bt_open.c: parenthesize - and & proper (from freebsd);Michael Shalayeff
hash_bigkey.c: fix NULL dereference exposed on big bsize values; hash_buf.c: fix DEBUG1 cases to make them print, not crash; hash.3: document real default values for bsize and ffactor.
2000-10-03public domainDavid Leonard
2000-10-03constistent namingDavid Leonard
2000-10-03thread switching codeDavid Leonard
2000-10-03Sync again.Angelos D. Keromytis
2000-10-03Sync.Angelos D. Keromytis
2000-10-02Don't call cgetset() on $TERMCAP if setugid. The logic has been reworkedTodd C. Miller
a bit to make it clear what is supposed to happen. Also fix some policy wrt setugid in code we don't actually compile for consistency's sake.
2000-10-02Don't look in ~/.terminfo if setugid. This is consistent with theTodd C. Miller
behavior of checking ~/.terminfo.db and ~/.termcap.db
2000-09-30Make it obvious that open(2) returns ELOOP if O_NOFOLLOW was specifiedTodd C. Miller
and the target is a symlink.
2000-09-27Sync again (remove unneeded RAND_set calls).Angelos D. Keromytis
2000-09-26Sync.Angelos D. Keromytis
2000-09-25fix off-by-1 error.Jun-ichiro itojun Hagino
From: Pavel Kankovsky <peak@argo.troja.mff.cuni.cz>
2000-09-25doc that O_TRUNC needs a write modeTheo de Raadt
2000-09-25document pmtu discovery, from NetBSDNiels Provos