Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-27 | do not use Sx for sections outwith the man page - ingo informs me that | Jason McIntyre | |
stuff like html will render with broken links; issue reported by Eric S. Raymond, via djm | |||
2013-06-27 | Parse for the closing delimiter `\}' for conditionals | Ingo Schwarze | |
even when the conditional evaluated to false. While here, reshuffle the code to reduce indentation and make it more readable; that way, we can even trim down the comments because it becomes obvious what the code does. Found in zipinfo(1) - thanks to espie@ and naddy@ for making me look at that manual page. | |||
2013-06-26 | Avoid mangling argv and environment variables. | Jeremie Courreges-Anglas | |
ok schwarze@ sthen@ | |||
2013-06-24 | tweak previous; | Jason McIntyre | |
2013-06-24 | do not use literal displays when the display contains mark up; | Jason McIntyre | |
2013-06-23 | Stop using deprecated functions from Kerberos. | Antoine Jacoutot | |
input from and ok millert@ | |||
2013-06-23 | Focus events can cause trouble if left on and they can't be turned off | Nicholas Marriott | |
during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off. | |||
2013-06-23 | Always push a focus event when the application turns it on, prompted by | Nicholas Marriott | |
discussion with Hayaki Saito a while ago. | |||
2013-06-23 | Mark control commands specially so the client can identify them, based | Nicholas Marriott | |
on a diff from George Nachman a while back. | |||
2013-06-22 | Tweak optimization flags on landisk until I have time to investigate further. | Miod Vallat | |
2013-06-22 | improved time_t overflow check suggested by guenther@ | Damien Miller | |
2013-06-21 | Stop using deprecated Kerberos functions. | Antoine Jacoutot | |
ok millert@ | |||
2013-06-21 | Default to stdin/stdout if no input files are | Jonathan Gray | |
given to indent. Based on FreeBSD svn rev 40502. ok kettenis@ millert@ lteo@ | |||
2013-06-21 | make this -Wsign-compare clean after time_t conversion | Damien Miller | |
2013-06-21 | sprinkle in some error() to explain moduli(5) parse failures | Damien Miller | |
2013-06-21 | explicitly mention that IdentitiesOnly can be used with IdentityFile | Damien Miller | |
to control which keys are offered from an agent. | |||
2013-06-21 | for hostbased authentication, print the client host and user on | Damien Miller | |
the auth success/failure line; bz#2064, ok dtucker@ | |||
2013-06-20 | Improve handling of the roff(7) "\t" escape sequence: | Ingo Schwarze | |
* Parsing macro arguments has to be done in copy mode, which implies replacing "\t" by a literal tab character. * Otherwise, render "\t" as the empty string, not as a 't' character. This fixes formatting of the distfile example in the oldrdist(1) manual. This also shows up in the unzip(1) manual as one of several issues preventing the removal of USE_GROFF from the archivers/unzip port. Thanks to espie@ for attracting my attention to the unzip(1) manual. | |||
2013-06-20 | fix typo | Marc Espie | |
thx Caspar Schutijser | |||
2013-06-20 | don't leak the rdata blob on errors; ok djm@ | Markus Friedl | |
2013-06-20 | add ut/nut flags to indent to enable/disable tabs. | Jonathan Gray | |
based on FreeBSD svn rev 131184. ok deraadt@ | |||
2013-06-19 | don't link to hx509, pthread and ntlm related libraries | Robert Nagy | |
2013-06-19 | stop doing kerberos in ssh and sshd | Theo de Raadt | |
the code bloat makes that no longer trustworthy functionality ok guenther | |||
2013-06-18 | Shuffle library link order to appease the static arch deities. | Miod Vallat | |
2013-06-18 | make sure the target directory gets created in the includes target | Robert Nagy | |
and add a trailing / as well to avoid problems | |||
2013-06-17 | link to the new kerberos libraries | Robert Nagy | |
2013-06-17 | remove asn1_compile and compile_et from usr.bin because they | Robert Nagy | |
have found a new home in src/kerberosV/tools | |||
2013-06-17 | Add support for the _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME options, | Philip Guenther | |
including CLOCK_{PROCESS,THREAD}_CPUTIME_ID constants and {clock,pthread}_getcpuclockid() functions. Worked out at t2k13 with help from tedu@ and matthew@ and testing by aja@ ok matthew@ | |||
2013-06-17 | Add .St values for POSIX 1003.1d, 1003.1j, and 1003.1q | Philip Guenther | |
Tweak descriptions of the other POSIX 1003.1<letter> standards Sort a few others into their proper places Discussed with schwarze@ at t2k13 | |||
2013-06-17 | Handle time_t values as long long's when formatting them and when | Philip Guenther | |
parsing them from remote servers. Improve error checking in parsing of 'T' lines. ok dtucker@ deraadt@ | |||
2013-06-16 | Quote values in the variable assignments, to be bulletproof in the face | Philip Guenther | |
of insane settings ok matthew@ jca@ stsp@ | |||
2013-06-16 | Oops, I undid rev. 1.2 | Jeremie Courreges-Anglas | |
Spotted by stsp@ (sorry) | |||
2013-06-16 | Improve locale(1) output formatting. | Jeremie Courreges-Anglas | |
Quote LC_* variables "that are not set in the environment or are overridden by LC_ALL" when printing them, and just print an empty string for LC_ALL if it is unset. With input and ok from guenther@ stsp@ | |||
2013-06-15 | Move upwards passed multiple lines with no characters instead of | Mark Lumsden | |
stopping when first line with no characters is found. | |||
2013-06-15 | Hook up locale(1). | Antoine Jacoutot | |
ok deraadt@ | |||
2013-06-15 | make explicit some hidden assumptions, make path handling clearer, | Marc Espie | |
fix set -e description, as we actually match what posix says. a bit of feedback from millert@, guenther@, jmc@ will probably have further fixes when he's back :) | |||
2013-06-12 | drop any quotes from variables when pulling them out of the .pc file; | Jasper Lievisse Adriaanse | |
fixes parsing of the upstream freetype2.pc file. original issue spotted by matthieu@ w/ espie@ | |||
2013-06-11 | revert r1.156 "Add support for focus notifications when tmux pane changes" | Stuart Henderson | |
beck@ found annoying beeps if a machine was shutdown while tmux is running and you then focus in/out of an xterm; kettenis tracked it down to 1.156. | |||
2013-06-11 | High memory page flipping for the buffer cache. | Bob Beck | |
This change splits the buffer cache free lists into lists of dma reachable buffers and high memory buffers based on the ranges returned by pmemrange. Buffers move from dma to high memory as they age, but are flipped to dma reachable memory if IO is needed to/from and high mem buffer. The total amount of buffers allocated is now bufcachepercent of both the dma and the high memory region. This change allows the use of large buffer caches on amd64 using more than 4 GB of memory ok tedu@ krw@ - testing by many. | |||
2013-06-10 | revert 1.203 while we investigate crashes reported by okan@ | Darren Tucker | |
2013-06-09 | merge conflicts, and kill a few more kittens while here. | Landry Breuil | |
2013-06-07 | Add an "ABANDONED" channel state and use for mux sessions that are | Darren Tucker | |
disconnected via the ~. escape sequence. Channels in this state will be able to close if the server responds, but do not count as active channels. This means that if you ~. all of the mux clients when using ControlPersist on a broken network, the backgrounded mux master will exit when the Control Persist time expires rather than hanging around indefinitely. bz#1917, also reported and tested by tedu@. ok djm@ markus@. | |||
2013-06-05 | plug another memleak. bz#1967, from Zhenbo Xu, detected by Melton, ok djm | Darren Tucker | |
2013-06-05 | -f reads from the file, based on patch from andre stoebe | Ted Unangst | |
2013-06-05 | Add charset to Pig locale name. Without charset the Pig locale won't work. | Stefan Sperling | |
2013-06-05 | Fix memory leaks found by Zhenbo Xu and the Melton tool. bz#1967, ok djm | Darren Tucker | |
2013-06-05 | typo in usage, comand/command; Arto Jonsson | Stuart Henderson | |
2013-06-05 | When running sshd -D, close stderr unless we have explicitly requesting | Darren Tucker | |
logging to stderr. From james.hunt at ubuntu.com via bz#1976, djm's patch so, err, ok dtucker. | |||
2013-06-05 | fix leaks in mux error paths, from Zhenbo Xu, found by Melton. bz#1967, ok djm | Darren Tucker | |
2013-06-05 | Some places used PATH_MAX from <limits.h>, some MAXPATHLEN from <sys/param.h>. | Ingo Schwarze | |
Consistently use the PATH_MAX since it is specified by POSIX, while MAXPATHLEN is not. |