summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2013-06-19don't link to hx509, pthread and ntlm related librariesRobert Nagy
2013-06-19stop doing kerberos in ssh and sshdTheo de Raadt
the code bloat makes that no longer trustworthy functionality ok guenther
2013-06-18Shuffle library link order to appease the static arch deities.Miod Vallat
2013-06-18make sure the target directory gets created in the includes targetRobert Nagy
and add a trailing / as well to avoid problems
2013-06-17link to the new kerberos librariesRobert Nagy
2013-06-17remove asn1_compile and compile_et from usr.bin because theyRobert Nagy
have found a new home in src/kerberosV/tools
2013-06-17Add 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-17Add .St values for POSIX 1003.1d, 1003.1j, and 1003.1qPhilip 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-17Handle time_t values as long long's when formatting them and whenPhilip Guenther
parsing them from remote servers. Improve error checking in parsing of 'T' lines. ok dtucker@ deraadt@
2013-06-16Quote values in the variable assignments, to be bulletproof in the facePhilip Guenther
of insane settings ok matthew@ jca@ stsp@
2013-06-16Oops, I undid rev. 1.2Jeremie Courreges-Anglas
Spotted by stsp@ (sorry)
2013-06-16Improve 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-15Move upwards passed multiple lines with no characters instead ofMark Lumsden
stopping when first line with no characters is found.
2013-06-15Hook up locale(1).Antoine Jacoutot
ok deraadt@
2013-06-15make 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-12drop 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-11revert 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-11High 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-10revert 1.203 while we investigate crashes reported by okan@Darren Tucker
2013-06-09merge conflicts, and kill a few more kittens while here.Landry Breuil
2013-06-07Add an "ABANDONED" channel state and use for mux sessions that areDarren 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-05plug another memleak. bz#1967, from Zhenbo Xu, detected by Melton, ok djmDarren Tucker
2013-06-05-f reads from the file, based on patch from andre stoebeTed Unangst
2013-06-05Add charset to Pig locale name. Without charset the Pig locale won't work.Stefan Sperling
2013-06-05Fix memory leaks found by Zhenbo Xu and the Melton tool. bz#1967, ok djmDarren Tucker
2013-06-05typo in usage, comand/command; Arto JonssonStuart Henderson
2013-06-05When running sshd -D, close stderr unless we have explicitly requestingDarren Tucker
logging to stderr. From james.hunt at ubuntu.com via bz#1976, djm's patch so, err, ok dtucker.
2013-06-05fix leaks in mux error paths, from Zhenbo Xu, found by Melton. bz#1967, ok djmDarren Tucker
2013-06-05Some 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.
2013-06-04Make sftp's libedit interface marginally multibyte aware by building up theDarren Tucker
quoted string by character instead of by byte. Prevents failures when linked against a libedit built with wide character support (bz#1990). "looks ok" djm
2013-06-04use MAXPATHLEN for buffer size instead of fixed value. ok markusDarren Tucker
2013-06-03nicer ENVIRONMENT;Jason McIntyre
2013-06-03properly handle commitid tokens found in rcs filesjoshua stein
ok deraadt
2013-06-03Add a minimal implementation of the locale(1) utility.Stefan Sperling
Can be used to check the current locale configuration and provides a list of locales supported by the system. help and ok matthew, schwarze
2013-06-03sort options list;Jason McIntyre
2013-06-03Add the 'g' character and dired-revert to refresh the dired buffer.Mark Lumsden
ok jmc@ for man page.
2013-06-03-I to confirm pkills. ok manyTed Unangst
2013-06-03force the MAC output to be 64-bit aligned so umac won't see unalignedDarren Tucker
accesses on strict-alignment architectures. bz#2101, patch from tomas.kuthan at oracle.com, ok djm@
2013-06-02No need for the mux cleanup callback to be visible so restore it to staticDarren Tucker
and call it through the detach_user function pointer. ok djm@
2013-06-02typo in commentDarren Tucker
2013-06-02Let .Do .Dq .Ql .So .Sq generate the correct roff(7) character escapeIngo Schwarze
sequences such that output modes like -Tutf8 have a chance to select nice glyphs. This doesn't change anything for -Tascii, and, for now, it doesn't affect -Tps and -Tpdf either. OK matthew@ bentley@; like the idea tedu@; no opinion jmc@.
2013-06-02Pq -> Qq, as confirmed by miod;Jason McIntyre
2013-06-02tweak previous; ok miodJason McIntyre
2013-06-02escape "Ss", becuase groff thinks it has found a macro;Jason McIntyre
2013-06-02move bgplg and slowcgi sockets to /var/www/runFlorian Obser
input reyk@, guenther@ "move fast" deraadt@ OK naddy@
2013-06-02Make parent_alive_interval time_t to avoid signed/unsigned comparisonDarren Tucker
2013-06-02Add misc.h for monotim prototype.Darren Tucker
2013-06-02Add the 'quit-window' dired command and receive a basic English lessonlum
from jmc@ again.
2013-06-02Fix return value in refreshbuffer.lum
2013-06-02Rename the dired-* commands to be like the emacs equivalents.lum