Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-05-07 | Pass a thread pointer instead of its file descriptor table to getvnode(9). | Martin Pieuchot | |
Input and ok millert@ | |||
2015-05-07 | array.h can be local to window-choose.c now. | Nicholas Marriott | |
2015-05-07 | Use a TAILQ not array for find-window. | Nicholas Marriott | |
2015-05-07 | Simplify environ_push so it doesn't need the ARRAY_* functions. | Nicholas Marriott | |
2015-05-07 | If status line is at the top, the offset needs to be adjusted when | Nicholas Marriott | |
drawing pane numbers. Based on a diff from John O'Meara. | |||
2015-05-07 | remove badly indented printf and it's preceeding test | Jonathan Gray | |
as suggested by miod@ | |||
2015-05-07 | fix indentation | Jonathan Gray | |
ok miod@ | |||
2015-05-07 | fix indentation of a line | Jonathan Gray | |
ok krw@ miod@ | |||
2015-05-07 | add missing braces to code under #ifdef TRM_DEBUG0 | Jonathan Gray | |
ok krw@ | |||
2015-05-07 | remove a surplus tab | Jonathan Gray | |
from miod@ | |||
2015-05-07 | add missing braces | Jonathan Gray | |
ok miod@ | |||
2015-05-06 | Remove ARRAY_* from history and expand completion to complete a) layout | Nicholas Marriott | |
names and b) targets beginning with -t or -s. | |||
2015-05-06 | fix a fd leak in an error path in code under #ifdef DEBUG | Jonathan Gray | |
2015-05-06 | regen | Jonathan Gray | |
2015-05-06 | #include <sys/event.h> was removed from init_sysent.c but not | Jonathan Gray | |
syscalls.master where the file is generated from. Fix this by removing it from syscalls.master so it doesn't come back. From Nicolas Bedos. | |||
2015-05-06 | Pass a thread pointer instead of its file descriptor table to getsock(9). | Martin Pieuchot | |
Diff from Vitaliy Makkoveev. Manpage tweak and ok millert@ | |||
2015-05-06 | use res_hnok() to valid domain part in valid_domain() | Gilles Chehade | |
ok eric@ | |||
2015-05-06 | Add a format window_linked which is 1 if a window has been linked | Nicholas Marriott | |
multiple times, also remove the default space in window_flags and use a conditional to add it in window-status-format (this means additional flags can be added in the option without extra spaces). From Thomas Adam with tweaks by me. | |||
2015-05-06 | Document that priority 1 is reserved for kernel use. | Martin Pieuchot | |
2015-05-06 | Display thread IDs instead of the name of the process's owner when "-H" | Martin Pieuchot | |
is used. The rationnal is that when you're looking at threads you're generally already filtereing by PID and this allow you to see which thread is a pig. Written some time ago with mikeb@ ok sthen@, krw@, guenther@ | |||
2015-05-06 | Turn cursor off during redraw, pointed out by George Nachman. | Nicholas Marriott | |
2015-05-06 | Clarify pseudo-terminal request behaviour and use "pseudo-terminal" | Darren Tucker | |
consistently. bz#1716, ok jmc@ "I like it" deraadt@. | |||
2015-05-06 | Blacklist DH-GEX for specific PuTTY versions known to send non-RFC4419 | Darren Tucker | |
DH-GEX messages rather than all versions of PuTTY. According to Simon Tatham, 0.65 and newer versions will send RFC4419 DH-GEX messages. ok djm@ | |||
2015-05-06 | make SWAP_KEY_GET symmetrical with SWAP_KEY_PUT by having it call | David Gwynne | |
a function in uvm_swap_encrypt.c instead of doing stuff inline. lets me remove an extern from the header too. ok kettenis@ | |||
2015-05-06 | put mpi's atomics back in, but with the return value of add (and therefore ↵ | David Gwynne | |
sub, inc, and dec) fixed. the asm read the value from memory into a register, added to it, and then tried to write it back. after succeeding it doesnt have to add again before returning. this splits sub, inc, and dec off from add. sub can use the subf opcode, and inc and dec can use the addic opcode. explicitely identify where the modified memory is so we can avoid using "memory" as a clobber. ok mpi@ | |||
2015-05-06 | Add missing braces so this will correctly fall back to the "name" | Jonathan Gray | |
property of a node if "device_type" is not present. ok mpi@ miod@ | |||
2015-05-06 | add missing braces | Jonathan Gray | |
ok guenther@ miod@ | |||
2015-05-06 | Use | when combining flags not +. Luckily in this case 1 + 2 == 1 | 2. | Jonathan Gray | |
ok mlarkin@ | |||
2015-05-06 | Fix a memory leak in _dl_load_dep_libs() | Jonathan Gray | |
ok otto@ guenther@ | |||
2015-05-05 | Eliminate rabid semicolon | Chris Cappuccio | |
2015-05-05 | no need to swizzle load/store addresses for 32bit values on big endian systems | Jonathan Matthew | |
ok miod@ | |||
2015-05-05 | Updated fifotest.out | Todd C. Miller | |
2015-05-05 | fifofs now respects the flags a descriptor was opened with. | Todd C. Miller | |
Also add tests for when no FD events are specified. A few tests still don't pass which will be addressed shortly. | |||
2015-05-05 | Now that we have a_fflag in struct vop_poll_args we can handle | Todd C. Miller | |
things like POLLOUT on a read-only fd more sensibly. Previously, any poll events could be used regardless of the actual file flags of the descriptor. The new fifo_poll() is effectively a pared down soo_poll() with slightly different semantics to batter match FIFOs. OK and feedback from guenther@ | |||
2015-05-05 | AI_ADDRCONFIG: skip loopback addresses, not loopback interfaces. | Jeremie Courreges-Anglas | |
This is what RFC3493 suggests. Fixes AI_ADDRCONFIG on setups where global addresses are configured only on loopback interfaces. Discussed with and ok eric@ gilles@ | |||
2015-05-05 | Move the AI_ADDRCONFIG setup to its own function. | Jeremie Courreges-Anglas | |
Input from and ok gilles@ eric@ | |||
2015-05-05 | Remove man page links for crypto(9) key operations; reminded by jmc@ | Mike Belopuhov | |
2015-05-05 | Less magic number | Alexandr Shadchin | |
For PS/2 - status byte - bit 5: The bit is '1' if the data on input port 60h came from the AUX port, or '0' if the data came from the keyboard or from the keyboard controller itself. KBS_TERR (kbd transmission error) was valid for AT-mode, but not for PS/2-mode. ok ratchov@, miod@ | |||
2015-05-05 | Make argument name consistent and use .Fn rather than .Nm in section 3. | Ingo Schwarze | |
Patch from <Kaspars at Bankovskis dot net>. | |||
2015-05-05 | add missing braces in _aucat_wmsg() | Jonathan Gray | |
As ratchov@ notes: "all _aucat_wmsg() callers set hdl->wtodo, so your diff can't break things that used to work by accident." ok ratchov@ | |||
2015-05-05 | Remove references to APIs that don't exist anymore. | Mike Belopuhov | |
Based on a diff from Vincent Gross <dermiste@kilob.yt>, thanks! | |||
2015-05-05 | Implement If-Modified-Since. | Florian Obser | |
From Kyle Thompson <jmp AT giga DOT moe>. Tweaks by me. OK benno@ | |||
2015-05-05 | WinSCP doesn't implement RFC4419 DH-GEX so flag it so we don't offer that | Darren Tucker | |
KEX method. ok markus@ | |||
2015-05-05 | Huawei MU609 from Cristián Edwards. | Martin Pieuchot | |
ok dcoppa@ | |||
2015-05-05 | regen | Martin Pieuchot | |
2015-05-05 | Huawei MU609 from Cristián Edwards. | Martin Pieuchot | |
ok dcoppa@ | |||
2015-05-05 | Flag user specified routes with an AF_LINK gateway as RTF_LLINFO. | Martin Pieuchot | |
This makes ND6 and ARP layers happy since they both check for this flag, but is was redundant to provide route(8)'s "-llinfo" option when adding a l2 route. RTF_LLINFO is clearly redundant for userland tools, so only allow the kernel to set it. ok benno@, claudio@ | |||
2015-05-05 | tweak; | Jason McIntyre | |
2015-05-05 | Document that shm_open() accepts O_CLOEXEC and O_NOFOLLOW as extensions | Philip Guenther | |
ok miod@ | |||
2015-05-05 | use the sizeof the struct not the sizeof a pointer to the struct | Jonathan Gray | |
in ssh_digest_start() This file is only used if ssh is built with OPENSSL=no ok markus@ |