Age | Commit message (Collapse) | Author |
|
asking for the device type upon labeling a freshly formatted disk.
|
|
do some sanity checking while it determines the load base.
ok kurt@
|
|
ok djm@
|
|
mostly debug output tweaks, a couple of error return value changes
and some other minor stuff
|
|
mostly debug output tweaks, a couple of error return value changes
and some other minor stuff
|
|
initialized. Calling malloc(9) at that point is not a good idea. So
initialize consbuf later.
Fixes dmesg -s on sparc64 (and probably a few other architectures).
ok miod@, deraadt@
|
|
okay millert@
|
|
licence mere mortals can understand the terms of); will be connected to the
build on an arch-by-arch basis.
Testsuites and generated files have been intentionnaly omitted from this import.
Peer pressure and ok from at least drahn@ pirofti@ deraadt@
|
|
Use the same logic from the read, write, accept functions to inform
the caller wether a readable or writable socket is needed. After
that event, the connect function must be called again. All the
checks before connecting are done only once.
OK tedu@
|
|
ok deraadt@ jasper@
|
|
detached, in order to prevent a deadlock situation.
This situation can occur if the thread detaching a device is sleeping,
waiting for all submitted transfers to finish, and the device's pipes
have not yet been aborted. This can happen when a USB Ethernet device
is being detached while a userland program is doing an ioctl(2).
Abort tasks need to be able to run in such case since timed out transfers
rely on them to be properly completed.
ok deraadt@
|
|
from Paul B. Henson, ok phessler@
|
|
from a merely glacial one; prompted by and ok markus
|
|
OK jmc@
|
|
|
|
|
|
changed or if we asked for it.
Should reduce the RTM_RESOLVE storm seeing by claudio@
With inputs from and ok mikeb@
|
|
route created/deleted with rt_ifa_add(9)/rt_ifa_del(9), not only for
RTF_LOCAL routes.
Regression introduced in r1.172 when restoring the original behavior
of RTM_NEWADDR/RTM_RTM_DELADDR reported by Florian Riehm.
Joint work with Florian Riehm, with input from and ok bluhm@.
|
|
proxy. Implement the -proxy feature in the same hackish way as
-starttls.
OK jsing@
|
|
Help and feedback by Theo and Miod.
OK deraadt@, manpage-ok jmc@
|
|
|
|
|
|
after the response.
Found by Erik Lax
ok florian@
|
|
|
|
rl_set_keyboard_input_timeout() that was added in this version.
Also crank the minor version.
OK krw@ yasuoka@ deraadt@
|
|
|
|
|
|
options to allow sshd to control what public key types will be
accepted. Currently defaults to all. Feedback & ok markus@
|
|
instead where necessary.
Based on a diff from enh (at) google.com
ok millert@
|
|
trailing whitespace;
|
|
was available in v4.
To quote Ken Thompson, grep appeared "sometime
before the 4th edition."
ok schwarze@
|
|
-#ifndef NI_MAXHOST
-#define NI_MAXHOST 1025
-#endif
Disappointing.
|
|
|
|
ok bluhm@
|
|
- Check the return value of every relevant function call.
- If BIO_new() returns NULL instead of a valid BIO, do not attempt to
blindly use the NULL value as a BIO throughout the rest of the code.
- Ensure that bio_out is freed by BIO_free_all() at the end of all
error paths.
ok doug@
|
|
- Nothing seems to free the result of host_dns(), so add host_dns_free() and
call after each query.
- If imsg_add() fails, it frees buf. Avoid subsequently dereferencing the
freed buf in imsg_close().
ok millert@ deraadt@
|
|
vndbuf allocation.
luke-warm support and ok krw@
|
|
ok tedu@ deraadt@
|
|
Fixes audio problems on an Asus J1800I-C
reported by Jan Stary.
|
|
spotted by Patrick Wildt
|
|
make install
from Simon Nicolussi
ok jsing tedu
|
|
|
|
|
|
|
|
work. Move it up into the main body.
ok tedu millert
|
|
|
|
- when entering bad144 mode, correctly compute the actual C/H/S values for the
logical block number.
- when leaving bad144 mode and resuming normal I/O operation, when computing
back the C/H/S values for the next logical block number, compute the
sector number correctly.
|
|
|
|
|
|
Previously a breakpoint at the first instruction would force us to
single-step. Depending on the single-step implementation this would make us
step over the breakpoint and continue in many cases. Fix this by passing the
address of the current instruction pointer which will skip the code that
checks if we need to step over a breakpoint. A similar fix has been made
upstream many moons ago. Fixes debugging static PIE on sparc64 and probably
others that use some sort of software single-stepping.
|