summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-01-19as the rest of our systems, make the most common key return ^? not ^H; ↵Theo de Raadt
agreed with aaron
2001-01-19alpha syncTheo de Raadt
2001-01-19mark remaining signal racesTheo de Raadt
2001-01-19do _exit() in exit handler, if it is a signalTheo de Raadt
2001-01-19mark remaining signal races which are difficult to fix, and fix a few partiallyTheo de Raadt
2001-01-19mark signal races i cannot fix at the momentTheo de Raadt
2001-01-19mark remaining signal races which are difficult to fixTheo de Raadt
2001-01-19clear and free digest, make consistent with other code (use dlen); from stevesk@Markus Friedl
2001-01-19fix typo; from stevesk@Markus Friedl
2001-01-19move ssh1 definitions to ssh1.h, pathnames to pathnames.hMarkus Friedl
2001-01-19Again, increase the size.Janne Johansson
2001-01-19only auth-chall.c needs #ifdef SKEYMarkus Friedl
2001-01-19pull post-4.4BSD change to sys/net/route.c from BSD/OS 4.2 (UCB copyrighted).Jun-ichiro itojun Hagino
have sys/net/route.c:rtrequest1(), which takes rt_addrinfo * as the argument. pass rt_addrinfo all the way down to rtrequest, and ifa->ifa_rtrequest. 3rd arg of ifa->ifa_rtrequest is now rt_addrinfo * instead of sockaddr * (almost noone is using it anyways). benefit: the follwoing command now works. previously we need two route(8) invocations, "add" then "change". # route add -inet6 default ::1 -ifp gif0 remove unsafe typecast in rtrequest(), from rtentry * to sockaddr *. it was introduced by 4.3BSD-reno and never corrected. XXX is eon_rtrequest() change correct regarding to 3rd arg? eon_rtrequest() and rtrequest() were incorrect since 4.3BSD-reno, so i do not have correct answer in the source code. someone with more clue about netiso-over-ip, please help.
2001-01-19More fixes from Don Beusee:Todd C. Miller
- edit and other interactive commands have no stdin (making the command completely broken). - messages with "From " line having date format with -0800 type of timezone are not recognized correctly.
2001-01-19syncAaron Campbell
2001-01-19ATI All-In-Wonder RadeonAaron Campbell
2001-01-18Support more than 256MB of physical memory.Dale Rahn
Other pieces of the kernel need to be reviewed that 256+MB does not cause other problems with the kernel accessing memory via user sr registers, instead of via the BAT registers. when in kernel context, segment registers 0-7 should _NOT_ have user mappings in them.
2001-01-18Fix RADIUS ports, per RFCs 2865/2866 (linuxfreak@partition.com)Angelos D. Keromytis
2001-01-18Only try VIA CLK66 bit code for VIA rev >= 6,Chris Cappuccio
Only try UDMA on ALi rev >= 0x20 (as per Daniela Engert's ChipList.txt) After I fix a few more bugs I will re-enable the ALi code
2001-01-18Remove some commented out stuff that will never be enabled.Artur Grabowski
Remove eisa bus support because we are not including any eisa device support. I'm not sure if this will fit on a floppy yet.
2001-01-18Remove errant line (pasto).Todd C. Miller
2001-01-18Provide examples showing how to convert old code to use sigprocmask(2).Todd C. Miller
2001-01-18rename *-skey.c *-chall.c since the files are not skey specificMarkus Friedl
2001-01-181) removes fake skey from sshd, since this will be muchMarkus Friedl
harder with /usr/libexec/auth/login_XXX 2) share/unify code used in ssh-1 and ssh-2 authentication (server side) 3) make addition of BSD_AUTH and other challenge reponse methods easier.
2001-01-18log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many systemsMarkus Friedl
2001-01-18don't call rsa-keygen from signalhandler.Markus Friedl
re-schedule keygen at the time the key is actually used.
2001-01-18Fix NOMAN build.Artur Grabowski
2001-01-18Fix NOMAN builds.Artur Grabowski
2001-01-18remove signal races, using flagsTheo de Raadt
2001-01-18do not remove default route by mistake, on interface removal.Jun-ichiro itojun Hagino
2001-01-18workaround; be sure to initialize nd6 interface information when IPv6Jun-ichiro itojun Hagino
interface address gets added. this will avoid presenting EMSGSIZE when outgoing interface is down (and never brought up). sync with kame.
2001-01-18wrap too noisy warnings into #ifdef ND6_DEBUGJun-ichiro itojun Hagino
2001-01-18permit prefixlen against inet address, like:Jun-ichiro itojun Hagino
# ifconfig fxp0 10.0.0.1 prefixlen 23
2001-01-18regenMichael Shalayeff
2001-01-18via686a/acm and order entries in via byt their numeric idMichael Shalayeff
2001-01-18crank "K to go" field to 8 digits; lukem@netbsd.orgTheo de Raadt
2001-01-17signal handler should finish using _exit()Theo de Raadt
2001-01-17syncTheo de Raadt
2001-01-17point out a few non-obvious and helpful ppp(8) optionsJason Wright
2001-01-17add missing /usr/include/readlineBrad Smith
2001-01-17at least cross-gcc was broken, can't test cross-binutils, but i bet they are ↵Michael Shalayeff
broken too
2001-01-17Don't copy the inner header's TTL on the outer header.Angelos D. Keromytis
2001-01-17avoid fd_set overflow by using poll(); avoid syslog() in signal handler by ↵Theo de Raadt
using flag checked in main loop
2001-01-17remove sprintf signal race, by pre-preparing wtmp entryTheo de Raadt
2001-01-17remove signal race, by checking signal flag in main loop; Niels looked at itTheo de Raadt
2001-01-17use sig_atomic_tTheo de Raadt
2001-01-17use more strlcpy()Theo de Raadt
2001-01-17remove stdio code from handler, and _exit() at terminationTheo de Raadt
2001-01-17move handler into main loopTheo de Raadt
2001-01-17make send_umntall() handler safe alsoTheo de Raadt