Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bzero sockaddr_in | 1996-07-22 | 1 | -0/+1 | |
| | |||||
* | bzero sockaddr before use | 1996-07-22 | 1 | -0/+1 | |
| | |||||
* | Add support for terminfo.db files; same format as termcap.db but with | 1996-07-22 | 3 | -24/+185 | |
| | | | | complete entries. | ||||
* | Correct return value | 1996-07-20 | 1 | -3/+4 | |
| | | | | Store attributes so comparing with them works when attributes change | ||||
* | bcopy->memcpy & tag | 1996-07-20 | 44 | -52/+96 | |
| | |||||
* | bogus frees; from jraynard@freebsd.org | 1996-07-20 | 1 | -2/+4 | |
| | |||||
* | support # comments | 1996-07-20 | 1 | -0/+2 | |
| | |||||
* | eschew use of HAVE_SOCKADDR_SA_LEN for now | 1996-07-19 | 1 | -2/+2 | |
| | |||||
* | We need "curses.priv.h" for tracing even with a private terminfo emulation | 1996-07-13 | 1 | -2/+1 | |
| | |||||
* | We are not neccecarily running with curses; if we are we won't use this | 1996-07-13 | 1 | -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. | 1996-07-12 | 19 | -425/+781 | |
| | |||||
* | cannot check for stack underflow | 1996-07-12 | 1 | -4/+1 | |
| | |||||
* | type fixos | 1996-07-06 | 1 | -1/+4 | |
| | |||||
* | prototype ethers(3) functions (inside !_KERNEL), pointed out in | 1996-07-03 | 1 | -0/+3 | |
| | | | | netbsd pr#2471, jhawk@mit.edu | ||||
* | document EOPNOTSUPP error return; from kgor@ksg.com | 1996-07-03 | 1 | -0/+2 | |
| | |||||
* | Permit old behaviour of uname(2) if new kernel variable is not available | 1996-07-03 | 1 | -2/+7 | |
| | |||||
* | for magic MD5 salt, call md5crypt() | 1996-07-02 | 1 | -3/+6 | |
| | |||||
* | pretty the comment | 1996-07-02 | 1 | -8/+8 | |
| | |||||
* | Use getrawpartition(). | 1996-07-02 | 1 | -3/+3 | |
| | |||||
* | update rcsid | 1996-07-01 | 32 | -94/+65 | |
| | |||||
* | streamline, check ports | 1996-07-01 | 1 | -29/+40 | |
| | |||||
* | destination address should have read source, return description was ambigous. | 1996-06-30 | 1 | -5/+4 | |
| | |||||
* | Make uname(1) and uname(3) do sane things for the version field; now will | 1996-06-29 | 1 | -9/+1 | |
| | | | | show only "KERNEL#build". | ||||
* | prefer non-loopback addresses | 1996-06-29 | 1 | -1/+12 | |
| | |||||
* | pmap_set/unset to loopback; should rewrite to search for loopback addr | 1996-06-29 | 1 | -0/+2 | |
| | |||||
* | typo | 1996-06-29 | 1 | -1/+1 | |
| | |||||
* | fix multiple invocations; from tlb@viaweb.com | 1996-06-29 | 1 | -3/+3 | |
| | |||||
* | from jtc; Ensure user can't make us overrun fixed sized buffers. | 1996-06-23 | 1 | -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 bit | 1996-06-23 | 1 | -2/+3 | |
| | | | | result will get -1. | ||||
* | Accept a NULL buffer to tgetent(3) | 1996-06-21 | 2 | -3/+17 | |
| | |||||
* | Make sure we don't write more than 1024 bytes into the buffer passed to | 1996-06-21 | 1 | -2/+7 | |
| | | | | tgetent(3); truncate the capability string if this happens. | ||||
* | When truncating to long termcap entries, don't leave partial capabilities | 1996-06-21 | 1 | -2/+5 | |
| | | | | at the end of the capability string | ||||
* | WHen called with a buffer (throug tgetent(3)), never type to copy more than | 1996-06-21 | 1 | -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-NULL | 1996-06-20 | 2 | -7/+11 | |
| | |||||
* | do not unexpectedly unlink the ptmp file; also support SIG*STOP cleanly | 1996-06-19 | 2 | -9/+18 | |
| | | | | with our changes which permit "EDITOR=emacs -nw" to work. | ||||
* | OpenBSD RCSID | 1996-06-19 | 1 | -0/+2 | |
| | |||||
* | MD2 copyright is too restrictive for us, pointed out by Jason Thorpe | 1996-06-19 | 1 | -15/+6 | |
| | |||||
* | Fix off by one error when setting up ttytype[] | 1996-06-18 | 1 | -3/+3 | |
| | |||||
* | Our terminfo emulation library now supports ttytype[], no need to special- | 1996-06-18 | 1 | -4/+0 | |
| | | | | case this anymore | ||||
* | Also emulate old ttytype[] behaviour. Strip off any obsolete 2-character | 1996-06-18 | 2 | -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.au | 1996-06-18 | 2 | -4/+11 | |
| | |||||
* | use p->hashfraction when doing non-time-critical calculations, rather than | 1996-06-18 | 2 | -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 id | 1996-06-18 | 1 | -2/+2 | |
| | |||||
* | oops, still missed a typo | 1996-06-18 | 1 | -2/+2 | |
| | |||||
* | slight cleaning | 1996-06-18 | 1 | -4/+7 | |
| | |||||
* | build poll.o | 1996-06-18 | 1 | -1/+1 | |
| | |||||
* | opendev.3: opendev(3) man page | 1996-06-17 | 2 | -3/+74 | |
| | |||||
* | util.h: new resting place | 1996-06-17 | 12 | -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. | 1996-06-17 | 1 | -48/+75 | |
| | | | | Added STT_FILE translation. General cleanup. | ||||
* | Add opendev(3) to libutil. Used by mt(1), soon by disklabel(8), maybe | 1996-06-17 | 3 | -5/+142 | |
| | | | | others. This is a generic version of the code used by mt(1). |