Age | Commit message (Collapse) | Author | |
---|---|---|---|
1998-07-29 | fix some initialization; ITOH Yasufumi <yasufu-i@is.aist-nara.ac.jp> | Todd C. Miller | |
1998-07-29 | real user .text base | Michael Shalayeff | |
1998-07-29 | add strchr proto | Michael Shalayeff | |
1998-07-29 | some debug prints; one lseek fix | Michael Shalayeff | |
1998-07-29 | if() debug prints; correct handling sym-less files | Michael Shalayeff | |
1998-07-28 | vn_rdwr proto fallout I missed earlier | Todd C. Miller | |
1998-07-28 | make dump work on filesystems not listed in fstab | Todd C. Miller | |
1998-07-28 | writev takes an int as param #3; theo | Todd C. Miller | |
1998-07-28 | change getent/getstr to gtgettent/gtgetstr, the names now used | Marco S Hyman | |
in libtelnet; add prototypes for both functions to ext.h | |||
1998-07-28 | rename getent/getstr to gtgetent/gtgetstr so they don't | Marco S Hyman | |
conflict with curses functions; the gt is for gettytab, the database read by these functions | |||
1998-07-28 | For 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-28 | Fix indentation problems. | Constantine Sapuntzakis | |
Remove annoying printf. | |||
1998-07-28 | Document NOCLEANDEPENDS, make clean gotcha | Marc Espie | |
1998-07-28 | Disable ISA PNP devices before ISA scan | Constantine Sapuntzakis | |
1998-07-28 | document EINVAL due to overflow | Todd C. Miller | |
1998-07-28 | Don't assume uio_resid can go negative when detecting oflow | Todd C. Miller | |
1998-07-28 | Don't talk about the sum of the iov_len being negative since iov_len is ↵ | Todd C. Miller | |
unsigned. | |||
1998-07-28 | Return 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-27 | oops, remove bugus trailing spaces | Marco S Hyman | |
1998-07-27 | Fix BATT_REMAINING macro so it returns values in minutes (as documented) | Marco S Hyman | |
not seconds | |||
1998-07-27 | add apm(4) man page | Marco S Hyman | |
1998-07-27 | Library dependencies | Niklas Hallqvist | |
1998-07-27 | LIBGMP was missing | Niklas Hallqvist | |
1998-07-27 | _OCURSES_H_, not _CURSES_H_ | Todd C. Miller | |
1998-07-27 | use old curses to avoid duplicate symbol in libtelnet | Todd C. Miller | |
1998-07-27 | s/comparision/comparison/g; netbsd | Theo de Raadt | |
1998-07-27 | make LIF definitions machine-wide | Michael Shalayeff | |
fix bug w/ blank LIF file names (\t crept into "" string), use memset don't prepend names w/ SYS_ | |||
1998-07-27 | machine-wide LIF definitions | Michael Shalayeff | |
1998-07-27 | bad Theo, changed a variable name ;-) | Todd C. Miller | |
1998-07-27 | include sys/param.h to pull in MAXPATHLEN | Todd C. Miller | |
1998-07-27 | don't include term.h | Todd C. Miller | |
1998-07-27 | use ocurses since libtelnet has a getstr() function that conflicts with ncurses | Todd C. Miller | |
1998-07-27 | Use -D_USE_OLD_CURSES_ so we don't need to include ocurses.h explicately | Todd C. Miller | |
1998-07-27 | clone mkstemp() setup in ../btree | Theo de Raadt | |
1998-07-27 | pull in string.h for memset() proto | Todd C. Miller | |
1998-07-27 | fix usage | Theo de Raadt | |
1998-07-27 | update to ncurses-4.2-980725 | Todd C. Miller | |
1998-07-27 | Add missing files | Todd C. Miller | |
1998-07-27 | Use 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-26 | Update and correct data. Also add vice president category. | Paul Janzen | |
1998-07-26 | Don'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-26 | When 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-26 | Don'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-26 | Modernize time proceedures. Remove obsolete comment | imp | |
1998-07-26 | clean up some things left from my debugging activity. | Matthieu Herrb | |
In particular remove the OVERRIDE_ directives specific to my board. | |||
1998-07-26 | o Fix Y2K buffer overflow. | imp | |
o Fix zero filling bug in all years % 100 < 10. | |||
1998-07-26 | typo | Paul Janzen | |
1998-07-26 | The world has changed. jsm28@cam.ac.uk | Paul Janzen | |
1998-07-26 | formatting | Paul Janzen | |
1998-07-26 | From FreeBSD: Fix discrepancy between sources and manual page for the | Paul Janzen | |
'c' command. |