Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | some clarifying comments | 2020-06-22 | 1 | -2/+9 | |
| | |||||
* | change "East Tupelo" reference to just "Tupelo"; | 2020-06-22 | 1 | -2/+2 | |
| | | | | from carson chittom | ||||
* | Document "s" command | 2020-06-22 | 1 | -1/+3 | |
| | | | | OK jmc | ||||
* | Remove ^Z mention | 2020-06-22 | 1 | -5/+2 | |
| | | | | | | | | | | Suspending systat with ^Z is done by the shell iff job control is enabled, not systat itself. Try "set +m" to disable job control or start systat in a terminal without a shell, e.g. "xterm -e systat", to confirm ^Z doing nothing in these cases. OK jmc | ||||
* | updated argument name for -P in first synopsis was missed in previous; | 2020-06-22 | 1 | -2/+2 | |
| | |||||
* | supply word missing in previous; | 2020-06-22 | 1 | -2/+2 | |
| | |||||
* | Add support for FIDO webauthn (verification only). webauthn is a | 2020-06-22 | 3 | -6/+130 | |
| | | | | | | standard for using FIDO keys in web browsers. webauthn signatures are a slightly different format to plain FIDO signatures - this support allows verification of these. Feedback and ok markus@ | ||||
* | refactor ECDSA-SK verification a little ahead of adding support | 2020-06-22 | 1 | -21/+23 | |
| | | | | for FIDO webauthn signature verification support; ok markus@ | ||||
* | support for RFC4648 base64url encoding; ok markus | 2020-06-22 | 2 | -2/+47 | |
| | |||||
* | better terminology for permissions; feedback & ok markus@ | 2020-06-22 | 1 | -11/+11 | |
| | |||||
* | better terminology for permissions; feedback & ok markus@ | 2020-06-22 | 3 | -37/+37 | |
| | |||||
* | plug the wireguard ioctls in. | 2020-06-22 | 2 | -2/+4 | |
| | |||||
* | add neil peart; from matthew j. c. clarke | 2020-06-21 | 1 | -1/+3 | |
| | |||||
* | Avoid one uninitialized warning in file_get() | 2020-06-20 | 1 | -2/+2 | |
| | |||||
* | Correct synopsis and usage for the options accepted when passing a command | 2020-06-19 | 2 | -5/+12 | |
| | | | | to ssh-agent. ok jmc@ | ||||
* | check public host key matches private; ok markus@ (as part of | 2020-06-18 | 1 | -2/+11 | |
| | | | | previous diff) | ||||
* | avoid spurious "Unable to load host key" message when sshd can load a | 2020-06-18 | 1 | -2/+8 | |
| | | | | private key but no public counterpart; with & ok markus@ | ||||
* | The redraw callback could be fired with a NULL pane if it updates while | 2020-06-18 | 1 | -2/+3 | |
| | | | | in a mode, problem reported by Martin Vahlensieck. | ||||
* | Add a flag to make a client wait for an empty line before exiting in | 2020-06-18 | 6 | -13/+51 | |
| | | | | control mode to avoid stray commands ending up in the shell. | ||||
* | Check control types and skip unknown ones. | 2020-06-18 | 1 | -2/+9 | |
| | |||||
* | Allow names to start with digits or underscores | 2020-06-18 | 1 | -12/+8 | |
| | |||||
* | Don't try to open device that's already open | 2020-06-18 | 5 | -38/+76 | |
| | | | | | | Save the current alternate device index and skip it in dev_reopen(). Handling alternate device indices this way will ease future development as well. | ||||
* | Manually tag the section option. | 2020-06-17 | 1 | -2/+3 | |
| | | | | | Automatic tagging does not work because the [-s] flag is optional. Patch from Martin Vahlensieck. | ||||
* | Document that rand() returns non-deterministic random numbers unless a | 2020-06-17 | 1 | -3/+12 | |
| | | | | | | seed is explicitly set. OK millert@ | ||||
* | Fix strlcpy() size parameter in refldbld(), it was a byte too small. | 2020-06-16 | 2 | -17/+21 | |
| | | | | | While here, add proper bounds checking for the partial match case in refldbld() too and check strlcpy() return values throughout. | ||||
* | rework SYNOPSIS/usage() to show better the various use formats, | 2020-06-16 | 2 | -58/+61 | |
| | | | | | | | and rework the man text to reflect this; guenther supplied the details on the various modes; deraadt suggested __progname be banished from usage(); | ||||
* | d and D keys to reset to default in customize mode. | 2020-06-16 | 8 | -63/+231 | |
| | |||||
* | Correctly move to previous line when looking for previous word, from | 2020-06-16 | 1 | -5/+5 | |
| | | | | Derry Jing. | ||||
* | document -T html -O tag as implemented in main.c rev. 1.253 | 2020-06-15 | 1 | -2/+19 | |
| | |||||
* | Support -T html -O tag by passing a file:// URI to the pager. | 2020-06-15 | 1 | -17/+24 | |
| | | | | | Feature suggested by and implementation based on a patch from Abel Romero Perez <romeroperezabel at gmail dot com>. | ||||
* | print the name of the rings in systat mbuf output too. | 2020-06-15 | 1 | -14/+17 | |
| | | | | useful if you're looking at a nic with a lot of different rings. | ||||
* | Add -b flags to insert a window before (like the existing -a for after) | 2020-06-13 | 6 | -47/+63 | |
| | | | | to break-pane, move-window, new-window. GitHub issue 2261. | ||||
* | Integrate the bsd-features branch from awk github. | 2020-06-13 | 8 | -14/+339 | |
| | | | | | Implements the gensub(), systime() and strftime() functions for greater gawk compatibility. | ||||
* | POSIX doesn't permit an unescaped '/' in an extended regular expression. | 2020-06-13 | 5 | -21/+35 | |
| | | | | | | | | Unlike upstream awk, ours has historically allowed unescaped '/' inside a bracket expression for compatibility with other awk implementations but the check was too simple-minded. This improves the matching to allow things like /[]/]/, /[^]// and '/[abc[:digit:]/@#]/' To enable strict POSIX compliance, set POSIXLY_CORRECT. | ||||
* | On error, drop clients and close the device only if it's still open | 2020-06-12 | 6 | -17/+20 | |
| | | | | | | | Fixes crashes when USB devices are disconnected, caused by an attempt to close the already closed device: it was closed once when its ref counter drops to zero (after the last client is disconnected) and once with an explicit call to dev_close() on the error code-path. | ||||
* | Remove superflous space I added with my last commit. | 2020-06-12 | 1 | -2/+2 | |
| | | | | noticed by jmc@ | ||||
* | Do not wait on shutdown for commands started with run -b. | 2020-06-12 | 1 | -3/+6 | |
| | |||||
* | update usage() with -R. | 2020-06-12 | 1 | -3/+4 | |
| | | | | reminded by jmc@ | ||||
* | Check if a pane needs to be paused when output is written rather than | 2020-06-12 | 1 | -1/+8 | |
| | | | | just when it is queued. | ||||
* | move-pane also defaults to marked pane now, reported by Ben Challenor. | 2020-06-12 | 1 | -2/+3 | |
| | |||||
* | Fix quoting with newlines and single quotes. | 2020-06-12 | 1 | -12/+15 | |
| | |||||
* | Add -R to show a summary of rdomains with associated interfaces and tables. | 2020-06-12 | 4 | -6/+93 | |
| | | | | | | | | | | My first version also displayed the number of routes per table. But duming all routing tables to count the entries in userland is expensive. Once the kernel can export these counters the numbers can be added to the output of -R. OK benno@ previous version OK sthen@ | ||||
* | correct RFC number; from HARUYAMA Seigo via GH PR191 | 2020-06-12 | 1 | -1/+1 | |
| | |||||
* | Add some formats for search in copy mode (search_present, search_match). | 2020-06-11 | 4 | -23/+56 | |
| | | | | GitHub issue 2268. | ||||
* | Fix a regression in rev. 1.238 (2019/07/26): | 2020-06-11 | 1 | -2/+2 | |
| | | | | | | | | Pass the right object to html_reset() or it will crash when rendering more than one manual page to HTML in a row. Bug reported by Abel Romero Perez <romeroperezabel at gmail dot com>. Ingo came up with the same diff and I'm borrowing his draft commit message. ok schwarze@ | ||||
* | Use setlocale(LC_CTYPE, "") instead of setlocale(LC_ALL, "") | 2020-06-11 | 1 | -2/+2 | |
| | | | | This matches upstream awk and OpenBSD only implements LC_CTYPE anyway. | ||||
* | Fix length parameter to strlcpy, inputFS is a pointer. | 2020-06-11 | 1 | -2/+2 | |
| | |||||
* | Fix a crash when completing sessions, from Anindya Mukherjee. | 2020-06-11 | 1 | -7/+18 | |
| | |||||
* | Add a -A option to pause a pane manually. | 2020-06-11 | 4 | -8/+30 | |
| | |||||
* | Update awk to June 5, 2020 version. | 2020-06-10 | 5 | -11/+35 | |
| |