summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2017-04-16Move comments into a block and uses {} to unconfuse reading.Theo de Raadt
2017-04-16Statistics for high memory flips in the buffer cacheBob Beck
nits from deraadt@ ok krw@ guenther@ kettenis@
2017-04-16remove -g from CFLAGS at florian's requestJonathan Gray
2017-04-16Different compilers and versions of compilers have different warnings.Jonathan Gray
Remove -Werror to give code a greater chance of building. ok deraadt@ florian@
2017-04-14Show long .Lk URIs in like an indented display, similar to groff.Ingo Schwarze
Suggested by bentley@.
2017-04-14Do not make the colon after the .Lk link text italic.Ingo Schwarze
I just pushed the same change to GNU troff.
2017-04-12isblank() is ANSI C since C99, no need to provide a replacement.Todd C. Miller
OK deraadt@
2017-04-12bluhm discovered "script < /dev/null" attempts tty operations in violationTheo de Raadt
of pledge. We can wrap isatty() around those codepaths. ok bluhm beck
2017-04-06a little const here and there to prevent rules from changingTed Unangst
2017-04-06prepenv can take a const ruleTed Unangst
2017-04-05Clamp size to length if snprintf ever indicates overflowTheo de Raadt
w/ millert
2017-04-05Add Home and End for copy mode.Nicholas Marriott
2017-04-05Try again to resolve problems with mistaking sessions for windows: nowNicholas Marriott
do not look up windows as sessions (and panes as windows) when they are qualified with a ':' or a '.'. So 'foo' as a window target will look for windows and sessions called 'foo', but ':foo' will only look for windows, and 'foo:' only for sessions. This means the common case of using an unadorned session as a window target (send -tfoo) should continue to work, but an explicit window will not get confused with a session (send -t:foo).
2017-04-05Give each client a name. This defaults to the tty name as before butNicholas Marriott
falls back to an alternative if the tty name is not available. This is clearer than overloading the client ttyname member and allows us to remove the path stored in the tty struct, it should always be the same as the client.
2017-04-05cfg_file can be static.Nicholas Marriott
2017-04-05Change tty_repeat_space to write large sets of spaces together insteadNicholas Marriott
of writing them individually.
2017-04-05- -Z before -z in options listJason McIntyre
- add -Z to help and usage()
2017-04-05an annoying whitespace glitchTheo de Raadt
2017-04-05Allow nc to save the peer certificate and chain in a pem file specifiedBob Beck
with -Z ok jsing@
2017-04-04disallow creation (of empty files) in read-only mode; reported byDamien Miller
Michal Zalewski, feedback & ok deraadt@
2017-04-03initialize regmatch_t always, fixes grep -o ""Ted Unangst
from Michael Santos
2017-04-02The character buffer should be resized using recallocarray()Theo de Raadt
ok millert and nicm a while ago
2017-04-02update currency exchange rates;Jason McIntyre
2017-04-02Replace snprintf(NULL, malloc, snprintf.... with the much better asprintf.Theo de Raadt
ok millert
2017-04-02Make dma range buffer cache pages visible in systat ioBob Beck
ok deraadt@
2017-03-28Prevent edit'ing a message from corrupting the mailbox. In an mbox fileMartin Natano
every message is terminated by an empty line, so we have to make sure it is preserved. Otherwise the message is combined with the next one. joint effort with deraadt and millert
2017-03-27simplify the SYNOPSIS as well, just like the option lists;Ingo Schwarze
suggested by and OK jmc@
2017-03-27For some options that are rarely needed in mandoc(1),Ingo Schwarze
delete the descriptions and point to man(1) instead. Inspired by apropos.1 rev. 1.35.
2017-03-27Simplify: mention at one place that -fkl override each other,Ingo Schwarze
rather than stating it separately for each option. Suggested, OKed, and tweaked by jmc@.
2017-03-26Change a reallocarray+bzero into recallocarray.Martijn van Duren
OK tb@ and deraadt@
2017-03-26One string buffer can use recallocarray() to ensure that the address spaceTheo de Raadt
doesn't get dribbled with known contents. ok otto millert tobias
2017-03-26incorrect renditions of this quote bother meTheo de Raadt
2017-03-25parameter "lines_allocated" is a local pointer and should not be confusedTheo de Raadt
with the global by the same name, so rename it "lines_allocatedp".
2017-03-25For some options that are rarely needed in apropos(1) and man(1),Ingo Schwarze
delete the verbose descriptions and point to man(1) and mandoc(1), respectively, instead. That shortens the pages and makes them easier to read. Tweaks and OK jmc@, based in part on ideas from tedu@.
2017-03-24Use the right header sizes for reading .aiff and .au files, ok ratchovNicholas Marriott
2017-03-24Write raw strings in one go rather than character at a time.Nicholas Marriott
2017-03-24Show count of search results in copy mode.Nicholas Marriott
2017-03-22simplify description of -S and -w, point from EXIT STATUSIngo Schwarze
to mandoc(1) for details, and remove duplicate .Xr to whatis(1); OK jmc@
2017-03-22Add support for the strikethrough attribute (SGR 9), using the new smxxNicholas Marriott
terminfo capability. This means there are now nine attribute bits, so anything above 0xff uses an extended cell.
2017-03-21Use uid_t for UID not u_int.Nicholas Marriott
2017-03-21simplify .Nd; to display manuals, use man(1) instead;Ingo Schwarze
OK jmc@
2017-03-21delete documentation of a hack that was removed years agoIngo Schwarze
2017-03-21Fix movement after select-line, from Omar Sandoval.Nicholas Marriott
2017-03-21Fix pane movement by direction (up, down, left, right) whenNicholas Marriott
pane-border-status is set, from KOIE Hidetaka.
2017-03-20recallocarray array that has remote dataTheo de Raadt
2017-03-20simplify example. list of ports variables was non-exahustive, which meansTed Unangst
what exactly? there should be a better place for such lists.
2017-03-20Silently ignore invalid -m input formats rather than erroring out.Ingo Schwarze
As observed by Jan Stary <hans at stare dot cz>, this is useful such that after 'alias man="man -m $HOME/man"', 'man -l foo.1' still works. Simplify and shorten the description of -m, and use .Ic for macros.
2017-03-20openssh-7.5Damien Miller
2017-03-19expand TAO in the correct place; from michael reedJason McIntyre
this commit differs a little from the diff michael posted: - i've uppercased the expansion, which seems a better fit - reworked a later description to fit
2017-03-18Correct description of MANPATH, and a few more improvementsIngo Schwarze
to the ENVIRONMENT section; OK jmc@