summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-02-24Make DES a feature, so isakmpd can compile on Linux (most of the fixedAngelos D. Keromytis
by newsham@lava.net)
2001-02-24For the GETSPI PFKEY message, use the sequence number from the ACQUIREAngelos D. Keromytis
message.
2001-02-24Add a vnode man pageConstantine Sapuntzakis
2001-02-24#else if/#elifMichael Shalayeff
2001-02-23catch up a little closer to realityJason Wright
2001-02-23Merge with FreeBSD:Jason Wright
more portable between fbsd and obsd real mii support prefer memory mapped registers (if configuration supports it)
2001-02-23fix damn pcxl damn functionMichael Shalayeff
2001-02-23Minor fixes.Aaron Campbell
2001-02-23Add -h option ("human-readable") as df. Based on suggestions and code fromPaul Janzen
Matt Bing <matt@anzen.com>.
2001-02-23the random session key depends now on the session_key_intMarkus Friedl
sent by the 'attacker' dig1 = md5(cookie|session_key_int); dig2 = md5(dig1|cookie|session_key_int); fake_session_key = dig1|dig2; this change is caused by a mail from anakin@pobox.com patch based on discussions with my german advisor niels@openbsd.org
2001-02-23back out prev change. I should read ALL of my mail before actingMarco S Hyman
2001-02-23create dhclient.leases when needed; ok deraadt@Marco S Hyman
2001-02-23cleanup after vacationing hippies and make dhclient create theBob Beck
dhclient.leases file if it doesn't exist, so that install floppies work again, thanks Brian Kifiak <bk@rt.fm>
2001-02-23give cp_time a proper treatmentMichael Shalayeff
2001-02-23Try to avoid sleeping in the syncer waiting for vnode locks.Constantine Sapuntzakis
From FreeBSD
2001-02-23handle SSH_PROTOFLAG_SCREEN_NUMBER for buggy clientsMarkus Friedl
2001-02-23debug2->3Markus Friedl
2001-02-23Allocate larger buffer for generated policies.Angelos D. Keromytis
2001-02-23Change the B_DELWRI flag using buf_dirty and buf_undirty instead ofConstantine Sapuntzakis
manually twiddling it. This allows the buffer cache to more easily keep track of dirty buffers and decide when it is appropriate to speed up the syncer. Insipired by FreeBSD. Look over by art@
2001-02-23Remove the clustering fields from the vnodes and place them in theConstantine Sapuntzakis
file system inode instead
2001-02-23Convert the sleep in ffs_fsync to a tsleep so we can get a good wmesg.Artur Grabowski
2001-02-23garbage-collect stale ND entries (default: 1 day).Jun-ichiro itojun Hagino
RFC 2461 5.3. sync with kame.
2001-02-23I tried to figure out how to have tmp_mnt get created automaticallyTheo de Raadt
inside amd source code. I could not figure out. So here it goes, until some rocket scientist points out how to do it in the real source.
2001-02-23remove unnecessary state, ND6_LLINFO_WAITDELETE, from neighbor cacheJun-ichiro itojun Hagino
state machine. no need for RTF_REJECT on neighbor cache entires, they are leftover from ARP code. sync with kame.
2001-02-23syncTheo de Raadt
2001-02-23Avoid potential uninitialized variablePaul Janzen
2001-02-22sort belongs in here tooTodd C. Miller
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@