summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-04-02strlcpy; millert okTheo de Raadt
2003-04-02fifo -> FIFOJason McIntyre
ok millert@
2003-04-02make it compile after tcpstates changes elsewhereMichael Shalayeff
2003-04-02remove dead codeHenning Brauer
2003-04-02nfs -> NFSJason McIntyre
2003-04-02remove what is left over from the control class stuffHenning Brauer
ok kjc@
2003-04-02midi -> MIDIJason McIntyre
2003-04-02potential segfault if KEY_UNSPEC; cjwatson@debian.org; bug #526Markus Friedl
2003-04-02better error handlingHenning Brauer
2003-04-02better error messageHenning Brauer
2003-04-02internal terminal emulator -> Internal Terminal EmulatorJason McIntyre
2003-04-02isa -> ISAJason McIntyre
2003-04-02enable rekey testMarkus Friedl
2003-04-02reapply rekeying chage, tested by henning@, ok djm@Markus Friedl
2003-04-02Hewlett Packard -> Hewlett-PackardJason McIntyre
2003-04-02use strlcpy(); assumes buf is at least ndigit bytes long which is asTodd C. Miller
safe as we can get. deraadt@ OK
2003-04-02snprintf; drahn okTheo de Raadt
2003-04-02knfTheo de Raadt
2003-04-02asprintf; millert okTheo de Raadt
2003-04-01When using bpf(4) in immediate mode, and using kevent(2) to receiveArtur Grabowski
notification of packet arrival, the usermode application isn't notified until a second packet arrives. This is because KNOTE() calls filt_bpfread() before bd_slen has been updated with the newly arrived packet length, so it looks like there is no data there. Moving the bpf_wakeup() call for immediate mode to after bd_slen is set fixes it. From: wayne@epipe.com.au in pr 3175
2003-04-01use PAGE_MASK instead of PAGE_SIZE-1Michael Shalayeff
2003-04-01dma -> DMAJason McIntyre
ok millert@
2003-04-01fix a few paskhal holidays and add a couple of great other onesMichael Shalayeff
2003-04-01745i/747i entries; from weissmanndudeMichael Shalayeff
2003-04-01there could be only oneMichael Shalayeff
2003-04-01Throw an error if the username field is empty; noticed by mpech@Todd C. Miller
2003-04-01Update to sudo 1.6.7p1; fixes false positives in the oflow detectionTodd C. Miller
of expand_prompt() introduced in sudo 1.6.7.
2003-04-01Elf, elf -> ELFJason McIntyre
2003-04-01'flags X' is not valid (BNF lied)Philipp Buehler
henning@ ok
2003-04-01anchors in BNFPhilipp Buehler
(from loki at niteshade . net)
2003-04-01Unused variable.Artur Grabowski
Pointed out by John L. Scarfone <j0@cox.net>
2003-04-01Digital Unix -> Digital UNIXJason McIntyre
Tru64 Unix -> Tru64 UNIX checked against HP web site.
2003-04-013.6.1Markus Friedl
2003-04-01bugfix causes stalled connections for ssh.com < 3.0; noticed by ho@; tested ↵Markus Friedl
by ho@ and myself
2003-04-01DELL -> DellJason McIntyre
2003-04-01backout rekeying changes (for 3.6.1)Markus Friedl
2003-04-01rekeying bugfixes and automatic rekeying:Markus Friedl
* both client and server rekey _automatically_ (a) after 2^31 packets, because after 2^32 packets the sequence number for packets wraps (b) after 2^(blocksize_in_bits/4) blocks (see: http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt) (a) and (b) are _enabled_ by default, and only disabled for known openssh versions, that don't support rekeying properly. * client option 'RekeyLimit' * do not reply to requests during rekeying
2003-04-01tidy up of EXAMPLES section;Jason McIntyre
host A -> Host A cisco -> Cisco for consistency
2003-04-01bios -> BIOSJason McIntyre
2003-04-01Add a couple of new pci subclasses and caps from NetBSDAlexander Yurchenko
ok jason@
2003-04-01snprintfTheo de Raadt
2003-04-01avoid memory leak on redirect header generation. from kame.Jun-ichiro itojun Hagino
2003-03-31Treat empty environment variables the same as NULL. henning@ OKTodd C. Miller
2003-03-31Protect tdb access w/ spltdb; Patrick LatifiTodd C. Miller
Since bridgeintr_frame() is called at splsoftnet() this isn't a big deal but should still be fixed. jason@ OK.
2003-03-31Avoid using FREEd data when we get a crypto error; Patrick LatifiTodd C. Miller
Also move the session ID reset into the crp_etype == EAGAIN case (noticed by angelos@). OK jason@ and angelos@
2003-03-31Typos in comments.Bruno Rohee
encryptiooon -> encryption vctor -> vector ascii -> ASCII
2003-03-31ascii -> ASCIIJason McIntyre
2003-03-31add a newline at end of file. gcc3 rightfully complains if the fileBruno Rohee
is not newline terminated. From Thorsten Glaser
2003-03-31Sync positional arguments equivalence's description with reality.Thierry Deval
ok millert@
2003-03-31Add missing splx; Patrick LatifiTodd C. Miller
jason@ OK