Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-01-12 | unbreak parsing of pubkey comments; with gerhard; ok djm/deraadt | Markus Friedl | |
2015-01-12 | revert the namecache embiggening since it seems to cause hangs at reboot. | Ted Unangst | |
reported and revert tested by krw | |||
2015-01-12 | missing error assigment on sshbuf_put_string() | Markus Friedl | |
2015-01-12 | oops, don't load quirks prematurely. noticed by many, myself included | Marc Espie | |
2015-01-12 | Fix axen(4) build with AXEN_DEBUG defined. From Fabien Raetz. | Stefan Sperling | |
2015-01-12 | exphy and ciphy are not needed with this list of network devices | Theo de Raadt | |
thanks jsg | |||
2015-01-12 | Due to recent savings with instbin, we can take i386 to one install | Theo de Raadt | |
floppy. A few drivers are missing, but the world has moved on (the drivers included are always a work in progress) Speeds up make release substantially, of course. | |||
2015-01-12 | Enable lid suspends by default in the kernel, and remove the question from | Theo de Raadt | |
the installer. We used a full release cycle to learn that suspend/resume is reliable enough for this default. Personal policy can disable this using machdep.lidsuspend=0 in /etc/sysctl.conf ok more people begging, and less people whining | |||
2015-01-12 | Fetching port distfiles with the ftp command from githup did not | Alexander Bluhm | |
work when using a https proxy because of a missing host header. Remember the host form the url and write it into the http request. Fix the format string when using Proxy-Authorization together with Cookie. Also write the http request to the debugging output to see what is going on. input jca@; OK sthen@ mpi@ | |||
2015-01-12 | apparently memcpy(x, NULL, 0) is undefined behaviour according to | Damien Miller | |
C99 (cf. sections 7.21.1 and 7.1.4), so check skip memcpy calls when length==0; ok markus@ | |||
2015-01-12 | Make sure the given user exists. | Antoine Jacoutot | |
"I like it" sthen@ ok robert@ | |||
2015-01-12 | Use proper casts for ctype functions. This is already fixed in nsd | Todd C. Miller | |
trunk. OK doug@ | |||
2015-01-12 | free->sshkey_free; ok djm@ | Markus Friedl | |
2015-01-12 | Kill the global list of IPv4 addresses. | Martin Pieuchot | |
ok claudio@, mikeb@, bluhm@ | |||
2015-01-12 | Make it possible to reset "timeout" to the default value. | Antoine Jacoutot | |
2015-01-12 | "timeout" must be a positive integer. | Antoine Jacoutot | |
2015-01-12 | allow WITH_OPENSSL w/o WITH_SSH1; ok djm@ | Markus Friedl | |
2015-01-12 | regen | Jonathan Gray | |
2015-01-12 | add some E5 v3 PCIE and Bay Trail ids | Jonathan Gray | |
2010-01-15 | NSD v3.2.4 | Jakob Schlyter | |
2015-01-12 | fatal if soft-PKCS11 library is missing rather (rather than continue | Damien Miller | |
and fail with a more cryptic error) | |||
2015-01-12 | Don't forget about protocol specification when configuring flows. | Mike Belopuhov | |
Tested by and OK claudio. | |||
2015-01-12 | let this test all supporte key types; pointed out/ok markus@ | Damien Miller | |
2015-01-12 | When setting up advanced TX descriptor use m_getptr to locate the IP | Mike Belopuhov | |
or IPv6 header instead of assuming contiguousness of the target buffer across Ethernet and IP/IPv6 headers. Tested by Kapetanakis Giannis <bilias at edu ! physics ! uoc ! gr>, thanks! Problem analysis and initial diff by dlg@. | |||
2015-01-12 | Add a note that HOST_NAME_MAX does not include a terminating \0, unlike | Nicholas Marriott | |
MAXHOSTNAMELEN. ok deraadt guenther | |||
2015-01-12 | pretty up some malloc() calls | Theo de Raadt | |
2015-01-12 | hibernate_suspend() should not pmap_kremove by itself; hibernate_free() | Theo de Raadt | |
must do that. otherwise, pmap_kremove is called twice. i386 in particular does not tolerate that, found by sebastia ok mlarkin kettenis | |||
2015-01-12 | Some fixes and tidying up of the receive filter handling bits. | Brad Smith | |
2015-01-12 | rename blocks to words. bcrypt "blocks" are unrelated to blowfish blocks, | Ted Unangst | |
nor are they the same size. | |||
2015-01-12 | Fix a memory leak in bss_dgram. | Doug Hogan | |
Free data->saved_message.data. Based on OpenSSL commit: 41cd41c4416f545a18ead37e09e437c75fa07c95 except this version sets a->ptr to NULL to avoid accidental reuse and handles malloc failing. ok beck@, input + ok miod@ | |||
2015-01-12 | stash the softc in the memory allocated for setting up a task for | David Gwynne | |
creating sensors. | |||
2015-01-11 | replace fw_update (shell script) with a specialized version of pkg_add. | Marc Espie | |
This has numerous advantages, in terms of speed and control. Initial version should be (mostly) identical to the old one. thanks to rpe@ and sthen@ for tests. | |||
2015-01-11 | Remove orphaned defines. | Miod Vallat | |
2015-01-11 | No more etc set, also sparc nowadays needs more than 16MB to boot multiuser. | Miod Vallat | |
2015-01-11 | Tolerate checksum errors in ACPI tables (but complain about them). Apparently | Mark Kettenis | |
there are machines out there with broken BIOSen with such checksum errors in thier RSDT tables. Windows runs fine on these machines, so it probably does not check. Linux ignores checksum errors as well (and prints a warning). ok deraadt@, krw@ | |||
2015-01-11 | LOCKDEBUG is dead; perform the funeral rites | Philip Guenther | |
pointed out by Helg (xx404 (at) msn.com) ok deraadt@ miod@ | |||
2015-01-11 | switch prototype warnings to implicit-declaration warnings. | Ted Unangst | |
This should catch all the same bad cases, but be a little less aggravating in circumstances where a prototype isn't necessary ok deraadt | |||
2015-01-11 | revert two latest commits until a crash is fixed | Gilles Chehade | |
2015-01-11 | When using sun4 PROM I/O routines, make sure we never attempt to transfer more | Miod Vallat | |
than the maximum DMA transfer size the PROM reports. Crank version to 2.9. | |||
2015-01-11 | There's no simple way so check for DMA buffer overrun with isochronous | Martin Pieuchot | |
transfers, so skip the check for such xfers for the moment. Issue reported by Ingo Feinerer and fix confirmed by Jan Stary. | |||
2015-01-11 | Use the softc-specific function pointers for bcopy() and bzero() in iestart(), | Miod Vallat | |
instead of, well, bcopy and bzero. This lets ie@vme transmit packets instead of panicing due to memset() trying to use 32-bit stores on a device address. | |||
2015-01-11 | Make sure to initialize nbpg to a sensible value in bootxx, when running on | Miod Vallat | |
a sun4 system - the prom i/o routines depend on it. | |||
2015-01-11 | Unbreak sun4 | Miod Vallat | |
2015-01-11 | global "list" is not the nicest variable name | Theo de Raadt | |
seen my mlarkin, ok miod | |||
2015-01-11 | add/fix/extend entries of exUSSR airports I've been to. | Kirill Bychkov | |
ok sthen@ | |||
2015-01-11 | unbreak the delivery_filename backend, now that it no longer prepends the | Gilles Chehade | |
From separator line but gets it injected in its iobuf by the mda process, we need to make sure not to escape the first 'From ' we receive. spotted by deraadt@ | |||
2015-01-11 | armv6 introduced opcodes for reversing words in registers. we can | David Gwynne | |
use these on armv7 as a backend for byteswapping things that endian.h provide. i dunno if its faster, but it makes smaller code. saves 30k on GENERIC-OMAP. ok jsing@ bmercer@ jsg@ | |||
2015-01-11 | correctly use HOST_NAME_MAX. | Theo de Raadt | |
Some notes: POSIX HOST_NAME_MAX doesn't include the NUL. POSIX LOGIN_NAME_MAX and TTY_NAME_MAX do include the NUL. BSD MAXHOSTNAMELEN includes the NUL. Actually, most of the historical BSD MAX* defines did include the NUL, except for the historical mistake of utmp fields without NULs in the string, which directly led to strncpy.. just showing how error prone this kind of accounting is. CSRG did right. Somehow POSIX missed the memo on the concepts of carefulness and consistancy, and we are still paying the price when people trip over this. Of course, glibc is even more amazing (that is a hint to blackhats) ok guenther | |||
2015-01-11 | use mallocarray(), then set the size afterwards. Prefer if people learn | Theo de Raadt | |
and use this idiom everywhere, it is always safest. | |||
2015-01-11 | use mallocarray() | Theo de Raadt | |