Age | Commit message (Collapse) | Author | |
---|---|---|---|
1996-06-21 | Accept a NULL buffer to tgetent(3) | Thorsten Lockert | |
1996-06-21 | Make sure we don't write more than 1024 bytes into the buffer passed to | Thorsten Lockert | |
tgetent(3); truncate the capability string if this happens. | |||
1996-06-21 | When truncating to long termcap entries, don't leave partial capabilities | Thorsten Lockert | |
at the end of the capability string | |||
1996-06-21 | WHen called with a buffer (throug tgetent(3)), never type to copy more than | Thorsten Lockert | |
1023 bytes into the passed buffer. Always make sure the buffer is NUL- terminated after copying a terminal description entry into it as well. | |||
1996-06-20 | only write to realpath if non-NULL | Theo de Raadt | |
1996-06-19 | do not unexpectedly unlink the ptmp file; also support SIG*STOP cleanly | Theo de Raadt | |
with our changes which permit "EDITOR=emacs -nw" to work. | |||
1996-06-19 | OpenBSD RCSID | Niklas Hallqvist | |
1996-06-19 | MD2 copyright is too restrictive for us, pointed out by Jason Thorpe | Niklas Hallqvist | |
1996-06-18 | Fix off by one error when setting up ttytype[] | Thorsten Lockert | |
1996-06-18 | Our terminfo emulation library now supports ttytype[], no need to special- | Thorsten Lockert | |
case this anymore | |||
1996-06-18 | Also emulate old ttytype[] behaviour. Strip off any obsolete 2-character | Thorsten Lockert | |
terminal type found at the head of the name list before saving the list. | |||
1996-06-18 | libpcap used yyparse(), which is bad; netbsd pr#2031; ↵ | Theo de Raadt | |
lukem@supp.cpr.itg.telecom.com.au | |||
1996-06-18 | use p->hashfraction when doing non-time-critical calculations, rather than | Theo de Raadt | |
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. | |||
1996-06-18 | update id | Theo de Raadt | |
1996-06-18 | oops, still missed a typo | Jason Downs | |
1996-06-18 | slight cleaning | Jason Downs | |
1996-06-18 | build poll.o | Theo de Raadt | |
1996-06-17 | opendev.3: opendev(3) man page | Jason Downs | |
1996-06-17 | util.h: new resting place | Jason Downs | |
opendev.h: ok, so I merged it with util.h opendev.h: use util.h everything else: use "util.h" | |||
1996-06-17 | Added better ELF section header handling. Correctly handle stripped objs. | etheisen | |
Added STT_FILE translation. General cleanup. | |||
1996-06-17 | Add opendev(3) to libutil. Used by mt(1), soon by disklabel(8), maybe | Jason Downs | |
others. This is a generic version of the code used by mt(1). | |||
1996-06-16 | The man page for wresize() was accidentally omitted | Thorsten Lockert | |
1996-06-16 | typo in i386_iopl(2) manpage; netbsd pr#2461; gary@wheel.tiac.net | Theo de Raadt | |
1996-06-16 | tparm() takes the args in the opposite order from tgoto() when using | Thorsten Lockert | |
terminfo style capabilities | |||
1996-06-16 | Don't allow overwrites as a means to moving to the right; updates sometimes | Thorsten Lockert | |
does not work correctly. This would often be seen in nvi | |||
1996-06-14 | if no executable formats are defined for the architecture, it should | Theo de Raadt | |
nlist should return -1 (not garbage). Guess how I found this bug. | |||
1996-06-12 | add /sbin/scsi from FreeBSD -- a good start! | Theo de Raadt | |
1996-06-10 | merge to latest libpcap | Theo de Raadt | |
1996-06-10 | iruserok() can finally safely use a u_int32_t for the ip addr | Theo de Raadt | |
1996-06-10 | Use setne instead of setnel, new versions of gas balk at the bad mnemonic. | Theo de Raadt | |
Wrong mask was used in s_finitef.S. | |||
1996-06-10 | includes target | Theo de Raadt | |
1996-06-10 | exit nicely, error out nicely | Theo de Raadt | |
1996-06-10 | make 64 bit clean | Theo de Raadt | |
1996-06-10 | fix %V | Theo de Raadt | |
1996-06-07 | MACH_ goes away, use cpu.h | Theo de Raadt | |
1996-06-06 | system() $EDITOR safely | Theo de Raadt | |
1996-06-03 | Add md[245] routines in libc/md, remove md5 from libc/crypt. Add $OpenBSD$ | Niklas Hallqvist | |
1996-06-02 | Some format strings were not handled entirely right, fixed. | Thorsten Lockert | |
Remove unused argument to internal _tparm | |||
1996-06-02 | Fix minor problem in translation of termcap capabilities into terminfo | Thorsten Lockert | |
1996-06-02 | Build libform, libmenu and libpanel | Thorsten Lockert | |
1996-06-02 | Remove garbage from import | Thorsten Lockert | |
1996-06-02 | SYSV-style form library; from ncurses | Thorsten Lockert | |
1996-06-02 | SYSV-style menu library; from ncurses | Thorsten Lockert | |
1996-06-02 | SYSV-style panels library; from ncurses | Thorsten Lockert | |
1996-06-02 | setupterm() should return 1 for success, not OK | Thorsten Lockert | |
1996-06-02 | Add file that got accidentally removed with curses upgrade; also bump | Thorsten Lockert | |
major version number on shared library | |||
1996-06-02 | Install ncurses as -lcurses and <curses.h> | Thorsten Lockert | |
Install BSD curses library as -locurses and <ocurses.h> | |||
1996-05-31 | Build new terminfo emulation library | Thorsten Lockert | |
1996-05-31 | Do not install links to libtermlib* on install | Thorsten Lockert | |
1996-05-31 | Terminfo emulation library; currently understands only about reading from | Thorsten Lockert | |
termcap database using cgetent(3) |