summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2011-05-06mention that IPv6 addresses must be enclosed in square brackets;Damien Miller
bz#1845
2011-05-06clarify language about overriding defaults. bz#1892, from Petr CernyDarren Tucker
2011-05-05gracefully fall back when ControlPath is too large for aDamien Miller
sockaddr_un. ok markus@ as part of a larger diff
2011-05-04allow "ssh-add - < key"; feedback and ok markus@Damien Miller
2011-05-04Change window with mouse wheel over status line if mouse-select-windowNicholas Marriott
is on, from marcel partap.
2011-05-04Don't need vis.h anymore.Nicholas Marriott
2011-05-04Don't use strnvis for the title as it breaks UTF-8. set-titles is nowNicholas Marriott
off by default and we have to trust the terminal can understand what we send it anyway so there isn't any harm.
2011-05-04Check if mouse-select-pane is ON not off when setting mouse flags,Nicholas Marriott
reported by oga.
2011-05-04Fix a typo in a comment, from Michael W Bombardieri.Nicholas Marriott
2011-05-04- note that quotes may have to be escaped from the shell and add an exampleJason McIntyre
(requested by Michael W. Bombardieri, who also provided the example; otto provided a better description) - reword the rest of the descriptions in EXAMPLES to make them a bit clearer ok otto
2011-05-03If the string of the address to listen on is '-' then listen on allAlexandre Ratchov
addresses (ie pass NULL to getaddrinfo which would return 0.0.0.0 and :: in most cases)
2011-05-02Add missing byter order conversions in message headers. Fixes the caseAlexandre Ratchov
when the server and the client are not of the same endianness. Found by naddy.
2011-05-02set the TCP_NODELAY option for TCP connectionsAlexandre Ratchov
2011-05-02Fix bad return value check for rcsnum_cmp()Charles Longeau
ok nickm@ xsa@
2011-05-02fix string containing state names used for debug printf()s,Alexandre Ratchov
add the missing SOCK_AUTH state
2011-05-02no need to escape `|'; as discussed with schwartzeJason McIntyre
2011-05-01Split ALL, ROLE and TYPE into their own actions. Since you canTodd C. Miller
only have #ifdefs inside of braces, ROLE and TYPE use a naughty goto in the non-SELinux case. This is safe because the actions are in one big switch() statement. Prodded by and with help from espie@
2011-04-30return >0 when file is not found. (from FreeBSD)lum
ok miod@
2011-04-29sorry, lousy fingers... typoed in the file while checking the diffMarc Espie
2011-04-29slightly better netmask regexpMarc Espie
okay millert@ henning@
2011-04-29Only redraw the status line on command update, not the entire clientNicholas Marriott
(big DOH).
2011-04-29Add currently undocumented keyboard options available on ifstat view.lum
ok jmc@
2011-04-29small tidy. contribution from patrick keshishian and extra tab spot by ↵lum
halex. Thanks. ok nicm@
2011-04-28- slight tweak for FILESJason McIntyre
- reword EXAMPLES a little, for readability
2011-04-28use ULONG_MAX instead of ~0Alexandre Ratchov
from Michael W. Bombardieri <mb at ii.net>, thanks
2011-04-28remove deadcode, use err(1, "%s", str) instead of err(1, str)Alexandre Ratchov
from Michael W. Bombardieri <mb at ii.net>, thanks!
2011-04-28Implement a new authentication method allowing aucat and midicat toAlexandre Ratchov
work over TCP, for instance, to expose the sound card of one machine with other machines of the network. The first client generates a 128-bit random number (aka the session cookie), saves it in $HOME/.aucat_cookie and sends it to the server. Successive clients load the cookie from $HOME/.aucat_cookie and send it to the server but the server accepts only clients whose cookie matches the session cookie. When all clients are gone, the session is over, and another cookie could start a new session, and so on. TCP is enabled on the server with the new -L option, and on the client side hostnames are specified with a new optional component in the device name. hints from damien, dlg and deraadt, tweaks from jmc
2011-04-27include signal.hAlexandre Ratchov
2011-04-27move amsg.h containing protocol defs from aucat side to libsndio side.Alexandre Ratchov
requested by deraadt
2011-04-27needs signal.h, tooTheo de Raadt
2011-04-27use more volatile sig_atomic_t in signal handlersTheo de Raadt
ok ratchov
2011-04-27cast one blocksize occurrence to unsigned long, fixes du(1)'s outputIgor Sobrado
for directories larger than one terabyte; while here, wrap a long line. problem found by Chano Antuna and diff written with lots of good advice from millert@, thanks! ok millert@
2011-04-26tyop in commentJasper Lievisse Adriaanse
2011-04-25linting this library is not helping anythingTheo de Raadt
2011-04-25As abbreviations for IEEE Std 1003.1 and its predecessors, use "POSIX.1"Ingo Schwarze
or "POSIX.2", respectively, but not "POSIX". That's closer to Open Group usage, leads to consistency in our own mandoc, and agrees with what both mandoc on other BSDs and groff-1.21 do. ok jmc@; "no objection" millert@; "no concerns" guenther@.
2011-04-24Provide #h for short hostname (no domain) from Michal Mazurek.Nicholas Marriott
2011-04-24Tweak copy behaviour slightly in vi mode to be closer to real vi. FromNicholas Marriott
Tiago Resende.
2011-04-24Prevent line breaks right before numbers. Groff does the same.Ingo Schwarze
OK kristaps@.
2011-04-24Closing delimiters only suppress spacing when they follow something.Ingo Schwarze
Fixing a regression introduced in bsd.lv rev. 1.105.
2011-04-24User defined macros may invoke high-level macros.Ingo Schwarze
The latter got lost due to a regression in bsd.lv rev. 1.130.
2011-04-24Merge version 1.11.1:Ingo Schwarze
Again lots of cleanup and maintenance work by kristaps@. - simplify error reporting: less function pointers, more mandoc_[v]msg - main: split document parsing out of main.c into read.c - roff, mdoc, man: improved recognition of control characters - roff: better handling of if/else stack overflows - roff: add some predefined strings for backward compatibility - mdoc, man: empty sections are not errors - mdoc: move delimiter handling to libmdoc - some header restructuring and some minor features and fixes This merge causes two minor regressions that i will fix in separate commits right afterwards.
2011-04-24delete a stupid SIGSEGV handler (not used)Theo de Raadt
2011-04-23improve line breaking in SYNOPSIS now that semantics of the .Bk macroIgor Sobrado
has changed to conform with modern groff releases. diff for route6d(8) written mostly by schwarze@, with lots of useful advice from jmc@. ok jmc@, schwarze@
2011-04-21Merge version 1.10.10:Ingo Schwarze
lots of cleanup and maintenance work by kristaps@. - move some main.c globals into struct curparse - move mandoc_*alloc to mandoc.h such that all code can use them - make mandoc_isdelim available to formatting frontends - dissolve mdoc_strings.c, move the code where it is used - make all error reporting functions void, their return values were useless - and various minor cleanups and fixes
2011-04-21Fix more long vs 64bit type mismatches. Now 4GB i386 <-> macppcKenneth R Westerback
transfers work for Richard Toohey.
2011-04-21find: return exit code 1 if any path could not be traversedJacek Masiulaniec
matches posix and the manual, ok millert
2011-04-20Stash the old seed when srand() is called and use it as the returnTodd C. Miller
value as per POSIX and the fine manual. Fix sent upstream to bwk. OK deraadt@
2011-04-20Remove some unneeded includes and dead code, from Michael W Bombardieri.Nicholas Marriott
ok jasper xsa
2011-04-20Remove some includes and defines that are no longer needed, from MichaelNicholas Marriott
W Bombardieri.
2011-04-20Trivial code simplifying, from Michael W Bombardieri.Nicholas Marriott