summaryrefslogtreecommitdiffstats
path: root/lib (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bzero sockaddr_inderaadt1996-07-221-0/+1
|
* bzero sockaddr before usederaadt1996-07-221-0/+1
|
* Add support for terminfo.db files; same format as termcap.db but withtholo1996-07-223-24/+185
| | | | complete entries.
* Correct return valuetholo1996-07-201-3/+4
| | | | Store attributes so comparing with them works when attributes change
* bcopy->memcpy & tagderaadt1996-07-2044-52/+96
|
* bogus frees; from jraynard@freebsd.orgderaadt1996-07-201-2/+4
|
* support # commentsderaadt1996-07-201-0/+2
|
* eschew use of HAVE_SOCKADDR_SA_LEN for nowderaadt1996-07-191-2/+2
|
* We need "curses.priv.h" for tracing even with a private terminfo emulationtholo1996-07-131-2/+1
|
* We are not neccecarily running with curses; if we are we won't use thistholo1996-07-131-4/+20
| | | | | mvcur() implementation at all; if we are not we need our own rawmode() implementation.
* bring it to the latest 0.2 LBL release.mickey1996-07-1219-425/+781
|
* cannot check for stack underflowderaadt1996-07-121-4/+1
|
* type fixosderaadt1996-07-061-1/+4
|
* prototype ethers(3) functions (inside !_KERNEL), pointed out inderaadt1996-07-031-0/+3
| | | | netbsd pr#2471, jhawk@mit.edu
* document EOPNOTSUPP error return; from kgor@ksg.comderaadt1996-07-031-0/+2
|
* Permit old behaviour of uname(2) if new kernel variable is not availabletholo1996-07-031-2/+7
|
* for magic MD5 salt, call md5crypt()deraadt1996-07-021-3/+6
|
* pretty the commentderaadt1996-07-021-8/+8
|
* Use getrawpartition().downsj1996-07-021-3/+3
|
* update rcsidderaadt1996-07-0132-94/+65
|
* streamline, check portsderaadt1996-07-011-29/+40
|
* destination address should have read source, return description was ambigous.dm1996-06-301-5/+4
|
* Make uname(1) and uname(3) do sane things for the version field; now willtholo1996-06-291-9/+1
| | | | show only "KERNEL#build".
* prefer non-loopback addressesderaadt1996-06-291-1/+12
|
* pmap_set/unset to loopback; should rewrite to search for loopback addrderaadt1996-06-291-0/+2
|
* typoderaadt1996-06-291-1/+1
|
* fix multiple invocations; from tlb@viaweb.comderaadt1996-06-291-3/+3
|
* from jtc; Ensure user can't make us overrun fixed sized buffers.deraadt1996-06-231-49/+64
| | | | | | Merged in changes from branch (make sure all memory, file descriptors, mappings, etc. are freed and return (nl_catd) -1 on error). Also fix one minor bug and clean up NLSPATH parsing a bit more.
* from mark; set r1 to -1 as well as r0 so callers expecting a 64 bitderaadt1996-06-231-2/+3
| | | | result will get -1.
* Accept a NULL buffer to tgetent(3)tholo1996-06-212-3/+17
|
* Make sure we don't write more than 1024 bytes into the buffer passed totholo1996-06-211-2/+7
| | | | tgetent(3); truncate the capability string if this happens.
* When truncating to long termcap entries, don't leave partial capabilitiestholo1996-06-211-2/+5
| | | | at the end of the capability string
* WHen called with a buffer (throug tgetent(3)), never type to copy more thantholo1996-06-211-4/+6
| | | | | 1023 bytes into the passed buffer. Always make sure the buffer is NUL- terminated after copying a terminal description entry into it as well.
* only write to realpath if non-NULLderaadt1996-06-202-7/+11
|
* do not unexpectedly unlink the ptmp file; also support SIG*STOP cleanlyderaadt1996-06-192-9/+18
| | | | with our changes which permit "EDITOR=emacs -nw" to work.
* OpenBSD RCSIDniklas1996-06-191-0/+2
|
* MD2 copyright is too restrictive for us, pointed out by Jason Thorpeniklas1996-06-191-15/+6
|
* Fix off by one error when setting up ttytype[]tholo1996-06-181-3/+3
|
* Our terminfo emulation library now supports ttytype[], no need to special-tholo1996-06-181-4/+0
| | | | case this anymore
* Also emulate old ttytype[] behaviour. Strip off any obsolete 2-charactertholo1996-06-182-4/+13
| | | | terminal type found at the head of the name list before saving the list.
* libpcap used yyparse(), which is bad; netbsd pr#2031; lukem@supp.cpr.itg.telecom.com.auderaadt1996-06-182-4/+11
|
* use p->hashfraction when doing non-time-critical calculations, rather thanderaadt1996-06-182-11/+18
| | | | | | | | | | | using HASHFRACTION directly. in time-critical calculations, if HASHFRACTION is a power of two, check that p->hashfraction == HASHFRACTION and if so do the calculation with the compiled-in value so that the compiler can optimize out (potentially) expensive divisions. if p->hashfraction != HASHFRACTION, actually do the division. This has the result that on machines with slow division, the division can be optimized out of the common case, but that if HASHFRACTION changes from the compiled-in value (for whatever reason), profiling will still work. Changes suggested by Chris Torek.
* update idderaadt1996-06-181-2/+2
|
* oops, still missed a typodownsj1996-06-181-2/+2
|
* slight cleaningdownsj1996-06-181-4/+7
|
* build poll.oderaadt1996-06-181-1/+1
|
* opendev.3: opendev(3) man pagedownsj1996-06-172-3/+74
|
* util.h: new resting placedownsj1996-06-1712-68/+114
| | | | | | opendev.h: ok, so I merged it with util.h opendev.h: use util.h everything else: use "util.h"
* Added better ELF section header handling. Correctly handle stripped objs.etheisen1996-06-171-48/+75
| | | | Added STT_FILE translation. General cleanup.
* Add opendev(3) to libutil. Used by mt(1), soon by disklabel(8), maybedownsj1996-06-173-5/+142
| | | | others. This is a generic version of the code used by mt(1).