summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-04-29a few more aen definitions, from freebsdMichael Shalayeff
2001-04-29cleanup, remove incorrect commentArtur Grabowski
2001-04-29more ssh.com-2.0.x bug-compat; from per@appgate.comMarkus Friedl
2001-04-29ddb command `machine halt' is superceded by `boot halt' now, so remove itMiod Vallat
and remove `machine reboot' as well.
2001-04-29Replace resource maps with extents, and cleanup associated variables.Miod Vallat
Idea from art's todolist, art@ ok.
2001-04-29fix whitespaceMarkus Friedl
2001-04-29Use S_ISXXX macros where possible instead of doing this by handTodd C. Miller
Noticed while diffing against NetBSD version
2001-04-29Add comment chars to (or just remove) bare words after #endif/#else for ANSI.Todd C. Miller
Noticed while diffing against NetBSD version
2001-04-29If errmsg() is passed a negative argument return strerror(errno)Todd C. Miller
Noticed while diffing against NetBSD version
2001-04-29syncTheo de Raadt
2001-04-29another pucTheo de Raadt
2001-04-29actually it is called 3CR990; tree unlockTheo de Raadt
2001-04-29When expanding the session table, only copy the number of sessions alreadyJason Wright
there to the new table; from stephen@etunnels.com (PR 1801).
2001-04-28openssh will be at 2.9Theo de Raadt
2001-04-25oops, this needs to be updated in 2.9 tooTheo de Raadt
2001-04-25Quick fix for code path in RENAME in case relookup doesn't find the file againConstantine Sapuntzakis
Also, get rid of a bogus comment. Patch from art@
2001-04-25General cleanup and updates here too, ok deraadt@Miod Vallat
2001-04-25Last update before release.Miod Vallat
2001-04-25After tree lock, undo a bullshit change that was obviously NOT tested.Theo de Raadt
Come on guys! Will you ever learn to not put radical untested shit into the source tree in the last few weeks before a release? A few of you do this time after time!
2001-04-25move txp from unsupported but lotsa questions about... to supportedJason Wright
more consistent handling of "including" vs "including:"
2001-04-24Clean up spelling, some punctuation.Dale Rahn
2001-04-24No need to keep installation notes for architectures we neverMiod Vallat
have supported.
2001-04-24Update supported hardware list, fix typos, use m4.common macrosMiod Vallat
whenever possible, remove obsolete information, etc. ok fries@
2001-04-24Update introduction text.Miod Vallat
ok fries@
2001-04-24Update floppy disk descriptions.Miod Vallat
Add a macro to document floppyC. Add a macro to document generic upgrade instructions. Fix a few typos. ok fries@
2001-04-24More explaination/better wording on what is necessary for shared disks.Dale Rahn
2001-04-24Update whatis to include details of what has changed between 2.8 and 2.9Dale Rahn
for powerpc
2001-04-24Last-minute fix for flavor deps. Very, very late.Marc Espie
Thanks, Theo.
2001-04-24enable txp(4)Theo de Raadt
2001-04-24Phew. After 8 months and 80+ hours of effort, I have finally gotten 3com toTheo de Raadt
release the 3CR990 microcode under an acceptable licence.
2001-04-24Major update to powerpc specific distribution notes.Dale Rahn
Minor tweaking may be necessary but this is the mass of the change.
2001-04-24update for XF4Todd T. Fries
2001-04-24update, etcHugh Graham
2001-04-24missing splx, found by art, not yet tested by smurph, but he has run out of timeTheo de Raadt
2001-04-24OpenSSH-2.9Markus Friedl
2001-04-24compatility -> compatibility; mpech@prosoft.org.lvAaron Campbell
2001-04-24Correct SA refcounting. Fixes a bug where isakmpd could die when a peer wasNiklas Hallqvist
discovered to have rebooted, and old now invalid SAs had to be garbage- collected.
2001-04-24remove unecessary code and dataJason Wright
initialize more of the client state in client_mode() add sessionid check on incoming packets. Non-matching packets are just ignored (this allows multiple pppoe's to run on the same interface without freaking out). Thanks again to Russell T Hunt <alaric@MIT.EDU>.
2001-04-24Remove unnecessary code; Russell T Hunt <alaric@MIT.EDU>.Jason Wright
2001-04-24PPPOE_MTU should be (ETHERMTU - sizeof(struct pppoe_header)) not two bytesJason Wright
less. (This is the MTU between ppp and bpf, not to be confused with the link negotiated ppp mtu). Many thanks to Russell T Hunt <alaric@MIT.EDU> and Brian Somers <brian@Awfulhak.org> for finding this.
2001-04-24make a clearer statement about unsupported functionalityMichael Shalayeff
2001-04-24linksys wpc11 is supportedMichael Shalayeff
2001-04-23remove debugMarkus Friedl
2001-04-23allow public key for -e, tooMarkus Friedl
2001-04-23regenTodd C. Miller
2001-04-23The Linksys WPC11 uses the Lucent Wavelan vendor and product IDs butTodd C. Miller
it is a Prism2 card. We add fake entries in pcmciadevs and the wi_pcmcia_product list so that it gets treated as Prism2.
2001-04-23Various man page fixes and improvements from gluk@Aaron Campbell
2001-04-23s = splimp(); ... s = splimp(); ... splx(x); ... splx(s); is a bad idea.Artur Grabowski
2001-04-23Clean up supposedly 'impossible' case in siop_intr() soKenneth R Westerback
a) meaningful but not voluminous debug info is printed and clearly associated with the offending siop bus. b) instead of panic'ing, reset the scsi bus and return. This problem was only seen under heavy load on powerpc. Plus fix one typo (exeption -> exception). ok deraadt@
2001-04-23Insert missing DvcLeaveCritial() (a.k.a. splx()) before a return.Kenneth R Westerback
Spotted by fgsch@.