summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2014-12-14Switch man(1) to the mandoc implementation.Ingo Schwarze
OK krw@ naddy@ sthen@ "commit it now" deraadt@ I won't remove the files in src/usr.bin/man, such that we can quickly switch back in case a problem is found.
2014-12-14minimally document -IOKTW; requested by naddy@Ingo Schwarze
2014-12-14Remove redundant NULL checks before free - BN_free(), BIO_free_all() andJoel Sing
EC_GROUP_free() all have implicit NULL checks.
2014-12-14unifdef OPENSSL_NO_NEXTPROTONEGJoel Sing
2014-12-14Handle ed command "s" as a one line command, which it is.Tobias Stoeckmann
Prevents arbitrary ed command executions in following lines. ok millert
2014-12-13just released mandoc 1.13.2Ingo Schwarze
2014-12-13Fix a regression found by Carsten dot Kunze at arcor dot de:Ingo Schwarze
Do not show bogus quotes when .Bl -column phrases are quoted.
2014-12-13The function savestr allows NULL return values during Plan A patching so inTobias Stoeckmann
case of out of memory conditions, Plan B can step in. In many cases, NULL value is not properly handled, so use xstrdup here (it's outside Plan A/B patching, which means that even Plan B relies on successful operations).
2014-12-12Bounds check the file path used in the 'w' command. Modified versionJonathan Gray
of a diff from Sebastien Marie to prevent a crash found by Sebastien with the afl fuzzer.
2014-12-12Rework the pointer swap in the 'P' command to make the intentJonathan Gray
clearer and avoid a crash on 'g;P' found by Sebastien Marie with the afl fuzzer.
2014-12-12revert chunk I didn't mean to commit yet; via jmc@Damien Miller
2014-12-11slightly reshuffle some code to reduce the diff with portable;Ingo Schwarze
no functional change
2014-12-11explicitly include sys/param.h in files that use the howmany() macro;Damien Miller
from portable
2014-12-11Make quotactlcmd formatting consistent with othersPhilip Guenther
Fix some indentation in the generated .c file
2014-12-11mention AuthorizedKeysCommandUser must be set forDamien Miller
AuthorizedKeysCommand to be run; bz#2287
2014-12-11show in debug output which hostkeys are being tried when attemptingDamien Miller
hostbased auth; patch from Iain Morgan
2014-12-11Make manual reflect reality:Damien Miller
sftp-server's -d option accepts a "%d" option, not a "%h" one. bz#2316; reported by Kirk Wolf
2014-12-10The macros endtoken and isgood aren't used anywhere... zap them andTobias Stoeckmann
their data structures. ok jsg, millert
2014-12-10Add ALPN support to openssl(1).Joel Sing
Based on OpenSSL.
2014-12-10better error value for invalid signature lengthDamien Miller
2014-12-09Fix division by zero for files with long lines (> 1024) in Plan B modeTobias Stoeckmann
by supporting arbitrarily long lines just like Plan A does. ok tedu
2014-12-09Add pane_dead_status for exit status of dead panes.Nicholas Marriott
2014-12-09init crmsg to something so it doesn't crash on invalid wtmp files.Ted Unangst
from david higgs
2014-12-09put back some information what the character classes actually mean;Ingo Schwarze
while here, remove the lie that regex(3) character classes would depend on the locale; ok jmc@
2014-12-09no more ctype(3);Jason McIntyre
2014-12-09Add some additional sanity checks to kdump.Jonathan Gray
Fixes a variety of crashes found with the afl fuzzer. ok miod@ on an earlier version.
2014-12-08spacesTheo de Raadt
2014-12-08Use srandom_deterministic() if a seed is supplied, thereby switching theTheo de Raadt
subsystem out of strong random mode. No effective change from what we've been doing for a while. Result is it becomes 1 line of code. ok millert
2014-12-08Convert syscall argument handling from a giant switch to a giant table.Philip Guenther
While at it, use formatters for fds, counts, ids of all types, and "small buffer sizes" that always show them in decimal, while paths, pointers, and "big buffer sizes" get formatters that always show them in hex. The -d option only affects args when the -n option is used or for unknown syscalls, as well as syscall return values, and unrecognized ioctls. ok otto@ millert@
2014-12-08fix a crash with '(' at EOF found with the afl fuzzerJonathan Gray
ok deraadt@ tobias@
2014-12-07Remove unused variable.Joel Sing
From Benjamin Baier <programmer at netzbasis.de>
2014-12-07Handle GF(2^m) EC curves for C code generation.Joel Sing
From Minux Ma.
2014-12-07make sure we always nul-terminateMarc Espie
problem spotted by jsg@ reorg so that the nul termination is obvious.
2014-12-06A few last 'easy' #include dedups.Kenneth R Westerback
ok tedu@
2014-12-06When opening mandoc.db fails, tell the user in which directory.Ingo Schwarze
Improving an unhelpful error message reported by millert@.
2014-12-05implement help(1)Ingo Schwarze
2014-12-05Improve parsing of function names.Ingo Schwarze
This gets rid of the last bogus entries in base and Xenocara.
2014-12-05Do not misinterpret function arguments as function names;Ingo Schwarze
improves semantic analysis of more than 300 manuals.
2014-12-05Render text before, not after accumulating flag bits, such that flagsIngo Schwarze
for different representations of the same string end up in the same database entry. Improves name classification for 500 manuals.
2014-12-05Rework the number handling to avoid an integer overflow/crashJonathan Gray
found with the afl fuzzer. This is tedu's simplified version of an earlier patch from me. ok tedu@
2014-12-04When finding a .so link after the page was already processed,Ingo Schwarze
do not clobber the existing names flags; instead, OR the additional flags into them.
2014-12-04remove a kerberosV leftover. ok miodTed Unangst
2014-12-04key_in_file() wrapper is no longer usedDamien Miller
2014-12-04correctly store .Dt and .TH information in the names tableIngo Schwarze
2014-12-04in the SYNOPSIS, add .Fo and first .Fn arguments to the names tableIngo Schwarze
2014-12-04In the SYNOPSIS, if .Nm occurs without argument, give the first .NmIngo Schwarze
that occurred in the document a NAME_SYN entry in the names table.
2014-12-04add RevokedHostKeys option for the clientDamien Miller
Allow textfile or KRL-based revocation of hostkeys.
2014-12-04fix handling of roff requests having a default scale other than "n",Ingo Schwarze
in particular .sp which uses "v", when the scale is not specified; cures groff-mandoc differences in about a dozen Xenocara manuals
2014-12-04convert KRL code to new buffer APIDamien Miller
ok markus@
2014-12-04Ignore macros that never produce any text when deciding whetherIngo Schwarze
vertical whitespace is needed before a section or subsection. Cures groff-mandoc differences in more than 300 manuals, mostly Xenocara, some curses, a few GNU.