summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1998-07-29fix some initialization; ITOH Yasufumi <yasufu-i@is.aist-nara.ac.jp>Todd C. Miller
1998-07-29real user .text baseMichael Shalayeff
1998-07-29add strchr protoMichael Shalayeff
1998-07-29some debug prints; one lseek fixMichael Shalayeff
1998-07-29if() debug prints; correct handling sym-less filesMichael Shalayeff
1998-07-28vn_rdwr proto fallout I missed earlierTodd C. Miller
1998-07-28make dump work on filesystems not listed in fstabTodd C. Miller
1998-07-28writev takes an int as param #3; theoTodd C. Miller
1998-07-28change getent/getstr to gtgettent/gtgetstr, the names now usedMarco S Hyman
in libtelnet; add prototypes for both functions to ext.h
1998-07-28rename getent/getstr to gtgetent/gtgetstr so they don'tMarco S Hyman
conflict with curses functions; the gt is for gettytab, the database read by these functions
1998-07-28For read, write, send, sendto, recv, recvfrom return EINVAL is size arg > ↵Todd C. Miller
SSIZE_MAX. For readv, writev, sendmsg, recvmsg return EINVAL if sum of the over iov_len values overflows an ssize_t. Based on what XPG 4.2 says (though XPG is not entirely consistent here). Basically since the return value is ssize_t allowing size > SSIZE_MAX is bad since people who (incorrectly mind you) check the return value for < 0 instead of == -1 will have bad things happen to them.
1998-07-28Fix indentation problems.Constantine Sapuntzakis
Remove annoying printf.
1998-07-28Document NOCLEANDEPENDS, make clean gotchaMarc Espie
1998-07-28Disable ISA PNP devices before ISA scanConstantine Sapuntzakis
1998-07-28document EINVAL due to overflowTodd C. Miller
1998-07-28Don't assume uio_resid can go negative when detecting oflowTodd C. Miller
1998-07-28Don't talk about the sum of the iov_len being negative since iov_len is ↵Todd C. Miller
unsigned.
1998-07-28Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned ↵Todd C. Miller
(size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * as its 9th argument so change that and clean up uses of vn_rdwr(). Fixes 549 + more
1998-07-27oops, remove bugus trailing spacesMarco S Hyman
1998-07-27Fix BATT_REMAINING macro so it returns values in minutes (as documented)Marco S Hyman
not seconds
1998-07-27add apm(4) man pageMarco S Hyman
1998-07-27Library dependenciesNiklas Hallqvist
1998-07-27LIBGMP was missingNiklas Hallqvist
1998-07-27_OCURSES_H_, not _CURSES_H_Todd C. Miller
1998-07-27use old curses to avoid duplicate symbol in libtelnetTodd C. Miller
1998-07-27s/comparision/comparison/g; netbsdTheo de Raadt
1998-07-27make LIF definitions machine-wideMichael Shalayeff
fix bug w/ blank LIF file names (\t crept into "" string), use memset don't prepend names w/ SYS_
1998-07-27machine-wide LIF definitionsMichael Shalayeff
1998-07-27bad Theo, changed a variable name ;-)Todd C. Miller
1998-07-27include sys/param.h to pull in MAXPATHLENTodd C. Miller
1998-07-27don't include term.hTodd C. Miller
1998-07-27use ocurses since libtelnet has a getstr() function that conflicts with ncursesTodd C. Miller
1998-07-27Use -D_USE_OLD_CURSES_ so we don't need to include ocurses.h explicatelyTodd C. Miller
1998-07-27clone mkstemp() setup in ../btreeTheo de Raadt
1998-07-27pull in string.h for memset() protoTodd C. Miller
1998-07-27fix usageTheo de Raadt
1998-07-27update to ncurses-4.2-980725Todd C. Miller
1998-07-27Add missing filesTodd C. Miller
1998-07-27Use a single character buffer for the size==0 case. Stdio internals do not ↵Todd C. Miller
deal correctly with zero size buffer and NULL pointer. torek@bsdi.com
1998-07-26Update and correct data. Also add vice president category.Paul Janzen
1998-07-26Don't skip 'b' when suggesting the next partition to add. I thought it ↵Todd C. Miller
would be confusing to suggest 'b' but what happens is that people build a disk without swap.
1998-07-26When asking the user for the disk type, base the default on the device name. ↵Todd C. Miller
Ie: wd -> IDE, sd -> SCSI, hd -> HP-IB, etc. Should help eliminate some confusion.
1998-07-26Don't allow user to do 'a c' since c always exists. They can still do 'c ↵Todd C. Miller
c'. Noted by fries@
1998-07-26Modernize time proceedures. Remove obsolete commentimp
1998-07-26clean up some things left from my debugging activity.Matthieu Herrb
In particular remove the OVERRIDE_ directives specific to my board.
1998-07-26o Fix Y2K buffer overflow.imp
o Fix zero filling bug in all years % 100 < 10.
1998-07-26typoPaul Janzen
1998-07-26The world has changed. jsm28@cam.ac.ukPaul Janzen
1998-07-26formattingPaul Janzen
1998-07-26From FreeBSD: Fix discrepancy between sources and manual page for thePaul Janzen
'c' command.