summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-02-22Add a caveat about our O_TRUNC paranoia; art@ okAnil Madhavapeddy
2001-02-22ifdef sparc -> ifdef __sparc__Artur Grabowski
2001-02-22use pwcopy in ssh.c, tooMarkus Friedl
2001-02-22typos/grammar from matt@anzen.comMarkus Friedl
2001-02-22set default values to sane things for OpenBSD, these are normallyBob Beck
set by Makefile.bsd-wapper, but this causes grief for people building just suexec if they aren't there, noticed in pr1680 by James Ponder <james@squish.net>
2001-02-22avoid sign extension for %bMichael Shalayeff
2001-02-22Add tsort regression suite. Not that our tsort is pretty bad at this game.Marc Espie
2001-02-22plopMarc Espie
2001-02-22activate RSA 2 keyTheo de Raadt
2001-02-22Typo police:Kenneth R Westerback
Replace last ADV/ASC/Adv, etc. uses with ADW/Adw as appropriate. Delete comments about non-existant structure members, correct references to existing structure members to use correct structure names or typedefs.
2001-02-22ELF uses more than 5 vmcmds by default, so grow the default vmcmd set sizeArtur Grabowski
to 8. At the same time it seemed like a good idea to avoid to always malloc a new vmcmd array, so put the default sized array into struct exec_vmcmd_set. We might want to make a linked list of vmcmd arrays or exec_vmcmd_sets instead of reallocating them some time in the future, but right now this seems like a waste of time.
2001-02-22bye bye -dTheo de Raadt
2001-02-22generate all 3 keys, use -t xxxTheo de Raadt
2001-02-22document -d, and -t defaults to rsa1Theo de Raadt
2001-02-22correct behavior when ip6 reass queue reaches the upper limit.Jun-ichiro itojun Hagino
2001-02-22Make _nc_get_token() take a "silent" argument and only warn if itTodd C. Miller
is not set. Propagate "silent" flag in _nc_parse_entry() to _nc_get_token(). Set the silent flag when reading termcap files, including $TERMCAP.
2001-02-22grammar; slade@shore.netTheo de Raadt
2001-02-22Update to ncurses-5.2-20010210:Todd C. Miller
o remove macro callPutChar() from tty_update.c, since this is no longer needed (reported by Philippe Blain). o add a null-pointer check in tic.c to handle the case when the input file is really empty. Modify the next_char() function in comp_scan.c to allow arbitrarily long lines, and incidentally supply a newline to files that do not end in a newline. These changes improve tic's recovery from attempts to read binary files, e.g., its output from the terminfo database (reported by Bernhard Rosenkraenzer). o revert change to c++/demo.cc from 20001209, which changed definition of main() apparently to accommodate cygwin linker, but broke the demo program.
2001-02-22Updates from ncurses-5.2-20010210:Todd C. Miller
o modify kterm to use acsc via SCS controls. o screen 3.9.8 allows xterm mouse controls to pass-through
2001-02-22Improve the page mapped check algorithm in the powerpc pmap module,Dale Rahn
before it was looking through two arrays of 8 and a linked list of undetermined size, before deciding that a mapping was not valid. Now it allocates a data structure and caches that data. This improves both pmap_enter and pmap_remove because both check to see if a mapping is valid before taking the appropriate actions. Also in pmap_remove, if the va mapping is found, stop searching for it in the rest of this array, the alternate array and the linked list. only one valid mapping of each va is allowed. This change improved lat_mmap (from lmbench) from 1300 to 720 and fork+exit from 7320 to 2724 microseconds.
2001-02-22plug mem leak i introduced; spotted by millertTheo de Raadt
2001-02-22syncChris Cappuccio
2001-02-22Use real VIA product names for IDE controllers rather then contrived ones,Chris Cappuccio
ok deraadt@
2001-02-22syncTheo de Raadt
2001-02-22slightly less verbose dmesgChris Cappuccio
2001-02-22be more more picky about ip6 destopt parsing. sync with kameJun-ichiro itojun Hagino
2001-02-22syncChris Cappuccio
2001-02-22Comments may not exist on 'product' or 'vendor' linesChris Cappuccio
2001-02-22Enable the same PHYs that are enabled in GENERICChris Cappuccio
2001-02-22Enable lxtphy and qsphy because they both work fine for me, ok jason@Chris Cappuccio
2001-02-22Add bus_dma.9 and bus_space.9Kenneth R Westerback
2001-02-22First attempt at bringing in bus_space.9 from NetBSD.Kenneth R Westerback
Changes from NetBSD bus_space.9 v1.15: 1) All references to the following functions were '.\"'d out: bus_space_read_raw_multi_1 bus_space_read_raw_region_1 bus_space_read_stream_1 bus_space_read_stream_2 bus_space_read_stream_4 bus_space_read_stream_8 bus_space_vaddr bus_space_write_raw_multi_1 bus_space_write_raw_region_1 bus_space_write_stream_1 bus_space_write_stream_2 bus_space_write_stream_4 bus_space_write_stream_8 2) All references to the following defines were '.\"'d out: BUS_SPACE_MAP_PREFETCHABLE BUS_SPACE_MAP_LINEAR 3) The entire COMPATIBILITY section with its discussion of of __BUS_SPACE_COMPAT_OLDDEFS was deleted as __BUS_SPACE_COMPAT_OLDDEFS does not seem to be used at all anywhere in the tree. 4) Added the already documented bus_space_alloc() to list of functions at head of page 5) Added bus_space_set_multi_N(t,h,o,v,c) definitions and descriptions 6) Renamed bus_space_copy_region_N to bus_space_copy_N 7) Replaced *_stream_* documentation with *_raw_* documentation 8) Rename the parameter 'flags' in bus_space_map and bus_space_alloc to 'cacheable' as that's the only flag we provide. Other more descriptive parameter names were retained rather than change to terse one/two letter parameter names used in bus.h 9) Eliminated short lines, made all new sentences start on new line, deleted extraneous .Pp's, removed some excess parenthesis, trailing white space, etc. ** Issues with bus_space.9 ** vax/bus.h and mac68k/bus.h still define bus_space_copy_region_N() instead of bus_space_copy_N like other architectures, though some of the comments do refer to bus_space_copy_N. powerpc/bus.h still defines bus_space_read_raw_multi_1() bus_space_write_raw_multi_1() vax/bus.h still defines BUS_SPACE_MAP_PREFETCHABLE while vax/bus.h and mac68k/bus.h both still define BUS_SPACE_MAP_LINEAR
2001-02-22First attempt at porting bus_dma.9 from NetBSD.Kenneth R Westerback
Changes to bus_dma.9 from NetBSD v1.14: 1) Delete two parameters (3rd & 4th) from bus_dmamap_sync (offset & len) 2) Delete dm_mapsize as a 'required' member of bus_dmamap_t (only present in vax/bus.h and alpha/bus.h) 3) Usual OpenBSD style-istic changes: no trailing white space, new lines for all sentences, reparagraph to eliminate short lines ** Issues with bus_dma.9 ** vax/bus.h still defines two parameters in bus_dmamap_sync() that are removed elsewhere (offset & len)
2001-02-21syncChris Cappuccio
2001-02-21Make dmesg prettier, ok deraadt@Chris Cappuccio
all your base are belong to us
2001-02-21Latest soft updates from FreeBSD/Kirk McKusickConstantine Sapuntzakis
Snapshot-related code has been commented out.
2001-02-21+ sisTheo de Raadt
2001-02-21-i supports DSA identities now; ok markus@Kevin Steves
2001-02-21Remove old (non-wsmouse) pms driver. aaron@ ok.jbm
2001-02-21Remove man pages for non-wsmouse drivers (olms, omms, opms). aaron@ ok.jbm
2001-02-21Add back code in find_jobs() that got dropped in cron merge.Todd C. Miller
2001-02-21make validation code more strict for ND6/dest6 variable length headers.Jun-ichiro itojun Hagino
check duplicated nd6_ifinfo table initialization in a better way. sync with kame
2001-02-21#ifdef out the "older tic versions may treat the description fieldTodd C. Miller
as an alias" warning since it hits people with $TERMCAP set when there is no terminfo file present. A better fix would be to make _nc_get_token() take a quiet flag.
2001-02-21change ai_addrlen to socklen_t. now it conforms toJun-ichiro itojun Hagino
draft-ietf-ipngwg-rfc2553bis-03.txt. backward compatibility concern: - should be safe to change signed to unsigned, as we never return negative value. - sizeof(int) is 4 for all archs, so there's no size change with socklen_t (= u_int32_t) commented by deraadt.
2001-02-21careful with & and &&; markus okTheo de Raadt
2001-02-21improve fd handlingTheo de Raadt
2001-02-21Missed a place for M_ZEROConstantine Sapuntzakis
2001-02-21inline -> __inline__, and some indentTheo de Raadt
2001-02-21syncTheo de Raadt
2001-02-21please test before commitingTheo de Raadt