Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-10 | fix socket_log() calls, EVENT expands to three comma separated | Otto Moerbeek | |
values; spotted by gcc; ok florian@ | |||
2020-05-08 | imsg.h needs uio.h, pointed out by deraadt | Nicholas Marriott | |
2020-05-08 | Fix obvious copy-past-O in calculation of maximum length of "Available" | Martijn van Duren | |
column for df subcommand. Fixes misalignment in some cases. | |||
2020-05-08 | Make sure cmsgbufs are properly aligned by using the idiom from the | Otto Moerbeek | |
CMSG_DATA man page. Avoids SIGBUS on landisk; ok kettenis@ jca@ | |||
2020-05-08 | fix compilation with DEBUG_KEXDH; bz#3160 ok dtucker@ | Damien Miller | |
2020-05-06 | openssh-8.3; ok deraadt@ | Damien Miller | |
2020-05-06 | another case where a utimes() failure could make scp send a | Damien Miller | |
desynchronising error; reminded by Aymeric Vincent ok deraadt markus | |||
2020-05-04 | tcpbench: display stats on SIGINFO, not just at exit. ok tb@ procter@ deraadt@ | Stuart Henderson | |
2020-05-02 | Add ping(1)-like summary statistics. | Richard Procter | |
Makefile omitted by mistake from commit tJPIjljmTjZW ok djm@ deraadt@ | |||
2020-05-02 | Add ping(1)-like summary statistics. | Richard Procter | |
ok djm@ deraadt@ | |||
2020-05-02 | we have a sshkey_save_public() function to save public keys; use it | Damien Miller | |
and save a bunch of redundant code. Patch from loic AT venez.fr; ok markus@ djm@ | |||
2020-05-01 | update currency exchange rates; | Jason McIntyre | |
2020-05-01 | when receving a file in sink(), be careful to send at most a single | Damien Miller | |
error response after the file has been opened. Otherwise the source() and sink() can become desyncronised. Reported by Daniel Goujot, Georges-Axel Jaloyan, Ryan Lahfa, and David Naccache. ok deraadt@ markus@ | |||
2020-05-01 | expose vasnmprintf(); ok (as part of other commit) markus deraadt | Damien Miller | |
2020-05-01 | avoid NULL dereference when attempting to convert invalid ssh.com | Damien Miller | |
private keys using "ssh-keygen -i"; spotted by Michael Forney | |||
2020-04-30 | tweak previous; ok markus | Jason McIntyre | |
2020-04-30 | bring back debug() removed in rev 1.74; noted by pradeep kumar | Markus Friedl | |
2020-04-30 | run the 2nd ssh with BatchMode for scp -3 | Markus Friedl | |
2020-04-30 | Do not remove the automatic-rename option from the global set, only from | Nicholas Marriott | |
the window (it must stay in the global set or tmux will crash). GitHub issue 2188. | |||
2020-04-30 | Add an expandtab option, similar to what vim supports. | Todd C. Miller | |
If set, expands tabs to spaces in insert mode as well as when shifting and indenting/outdenting. If quoted with ^V, a literal tab is inserted. Adapted from NetBSD, but this implementation more closely matches vim's behavior. OK dlg@ | |||
2020-04-28 | Rather than attempting to lookup the keyword "set" as a hostname, | Theo de Raadt | |
issue a usage message. This matches both historical behaviour, and the operation upon other keywords. ok florian | |||
2020-04-28 | when signing a challenge using a FIDO toke, perform the hashing in the | Damien Miller | |
middleware layer rather than in ssh code. This allows middlewares that call APIs that perform the hashing implicitly (including Microsoft's AFAIK). ok markus@ | |||
2020-04-27 | Display multi-state controls with exactly three decimal places. | Ingo Schwarze | |
Because for now, the maximum raw value of such controls is either 127 or 255, that assures that whenever the raw value changes, the displayed value changes, too. At the same time, it preserves the property that control values are not shown with excessive, misleading precision. If controls will ever be introduced that will have maximum raw values of less than 100 or of more than 999, the number of decimal places should then be reduced or increased for such controls as appropriate. With important help and an OK from ratchov@. | |||
2020-04-27 | Do not close the stdout file descriptor in control mode as it will be | Nicholas Marriott | |
needed for printing the exit messages. Fixes a bug when detaching with iTerm2. | |||
2020-04-26 | While we do not recommend the idiom ".Fl Fl long" for long options | Ingo Schwarze | |
because it is an abuse of semantic macros for device-specific presentational effects, this idiom is so widespread that it makes sense to convert it to the recommended ".Fl \-long" during the validation phase. For example, this improves HTML formatting in pages where authors have used the dubious .Fl Fl. Feature suggested by Steffen Nurpmeso <steffen at sdaoden dot eu> on freebsd-hackers. | |||
2020-04-26 | Bypass authentication and create no session for root | Alexandre Ratchov | |
ok deraadt | |||
2020-04-26 | Fix comment typo. Patch from mforney at mforney.org. | Darren Tucker | |
2020-04-26 | Display TLSv1.3 extension type with openssl(1) -tlsextdebug | Kinichiro Inoguchi | |
Add TLSv1.3 extension type, and sort by the definition order in tls1.h. This helps that openssl(1) s_server and s_client with -tlsextdebug displays the TLS extension type instead of "unknown". ok beck@ jsing@ tb@ | |||
2020-04-26 | s_client: fix use of possibly uninitialized values | Kinichiro Inoguchi | |
Set initial value to variable 'p' and 'pending'. Reported and fix requested from leonklingele by GitHub pull request. https://github.com/libressl-portable/portable/issues/577 https://github.com/libressl-portable/openbsd/pull/114 ok bcook@ jsing@ tb@ | |||
2020-04-25 | In s_server.c rev. 1.33, jsing added support for "openssl s_server -groups"; | Ingo Schwarze | |
document it and deprecate "openssl s_server -named_curve". While here, fix the error in the synopsis for "openssl s_client -groups" and use unified argument naming and similar wording like in SSL_CTX_set1_groups_list(3). OK jsing@ | |||
2020-04-25 | We've standardized on memset over bzero, replace a couple that had slipped | Darren Tucker | |
in. ok deraadt markus djm. | |||
2020-04-25 | If no -f options are used, expose first 4 audio(4) devices to clients | Alexandre Ratchov | |
2020-04-25 | Get a reference to the device when "snd/N" MIDI ports are opened | Alexandre Ratchov | |
As the master output level control is not in software any longer the device needs to opened for adjustments to work. | |||
2020-04-24 | Add an example of "sndioctl output.level=+0.1" as suggested by espie@, | Ingo Schwarze | |
add an example of toggling a switch as suggested by ratchov@, and simplify and clarify the wording in the EXAMPLES section. OK ratchov@ | |||
2020-04-24 | provide a STYLE message when mandoc knows the file name and the extension | Ingo Schwarze | |
disagrees with the section number given in the .Dt or .TH macro; feature suggested and patch tested by jmc@ | |||
2020-04-24 | Make sure devices are properly closed in case of an error. | Alexandre Ratchov | |
Fixes possible crashes if the contol device fails, while the audio device continues to work. | |||
2020-04-24 | Fix incorrect error message for "too many known hosts files." bz#3149, patch | Darren Tucker | |
from jjelen at redhat.com. | |||
2020-04-24 | Remove leave_non_blocking() which is now dead code because nothing sets | Darren Tucker | |
in_non_blocking_mode any more. Patch from michaael.meeks at collabora.com, ok djm@ | |||
2020-04-23 | ce examples of "Ar arg Ar arg" with "Ar arg arg" and stop the spread; | Jason McIntyre | |
2020-04-23 | Explain in the DESCRIPTION section in which cases mixerctl should be used | Alexandre Ratchov | |
joint work with jmc, thanks | |||
2020-04-23 | Overrides need to be applied both before and after features in case they | Nicholas Marriott | |
change flags used to detect a feature. | |||
2020-04-23 | Document uvmexp.nswget without relying on implementation details. | Martin Pieuchot | |
Prompted by a question from schwarze@ ok deraadt@, schwarze@, visa@ | |||
2020-04-23 | Use "control" instead of "variable", more appropriate in this context | Alexandre Ratchov | |
ok and tweaks jmc | |||
2020-04-23 | Fix a couple of memory leaks, one when creating a new pane and one when | Nicholas Marriott | |
adding formats onto the queue item. | |||
2020-04-23 | adjust section argument of .Dt macro after move from section 1 to 8; | Ingo Schwarze | |
patch from Raf Czlonka <rczlonka at gmail dot com> | |||
2020-04-22 | use a root prompt for EXAMPLES; ok ratchov | Jason McIntyre | |
2020-04-22 | Improve join-pane, move-pane and break-pane: | Nicholas Marriott | |
- There is no need for join-pane and move-pane to be different. - break-pane can just behave like move-window if the source has only one pane, instead of failing. - Add -a to break-pane like move-window. Also add missing man page bits for previous window-tree.c changes. GitHub issue 2176. | |||
2020-04-22 | Indicate the marked pane in choose mode in reverse and add key to set | Nicholas Marriott | |
and clear it (m and M) and a key to jump to the starting pane (H). | |||
2020-04-22 | Add a session_marked format like window_marked. | Nicholas Marriott | |
2020-04-22 | mark up a function name with .Fn; | Ingo Schwarze | |
found with mandoc -Tlint |