summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2012-04-11In the "reply" code path, lock the socket while invoking theAlexandre Ratchov
write-end code from the read-end code, and don't forget to check if the socket was not destroyed. Fixes very rare random crashes.
2012-04-11flush the log and abort() if we try to destroy a NULL aprocAlexandre Ratchov
2012-04-11make has had heuristics to avoid parallel make recursion.Marc Espie
Sometimes they mess up, so add .CHEAP/.EXPENSIVE to explicitly tell make 'hey this is not THAT bad' or 'worse than you think'. agreed by guenther@, millert@ (and some tweaks)
2012-04-11Add:lum
1. C-x h to mark whole buffer. 2. M-| to pipe current region to external command. From Sunil Nimmagadda. Feedback from deraadt@ and myself. ok for man page amendments from jmc@
2012-04-11Move size == 0 check to the beginnig of copy(); ok espie@Todd C. Miller
2012-04-11When writing a file via 'C-x C-w', ask user if they want to overwrite anlum
existing file. This mimics emacs behaviour. Reviewed by Sunil Nimmagadda.
2012-04-11guenther and kettenis say THREAD_PID_OFFSET shouldn't be subtractedMike Belopuhov
2012-04-11now that sshd defaults to offering ECDSA keys, ssh-keyscan should alsoDamien Miller
look for them by default; bz#1971
2012-04-11don't spin in accept() when out of fds (ENFILE/ENFILE) - back off for aDamien Miller
while; ok deraadt@ markus@
2012-04-11Support "none" as an argument for AuthorizedPrincipalsFile to indicateDamien Miller
no file should be read.
2012-04-11don't spin in accept() when out of fds (ENFILE/ENFILE) - back off for aDamien Miller
while; ok deraadt@ markus@
2012-04-11add -H to usage();Jason McIntyre
2012-04-11fix install to cope with 0-sized mmap now returning EINVAL.Marc Espie
- no need to copy anything - gc redundant size check - short-cut for compare (theo's code) - gc volatile ??? - style "sure" theo
2012-04-11Silence gcc warnings.Antoine Jacoutot
ok deraadt@
2012-04-11Turn automatic-rename off properly if turned off by renaming aNicholas Marriott
window. Reported by Romain Francoise.
2012-04-11Stop accepting new clients for 1 second on EMFILE/ENFILE. Based onNicholas Marriott
ongoing fixes to other daemons by Theo.
2012-04-11Use "unsigned int" rather than "unsigned". No object change.Alexandre Ratchov
suggested by deraadt@
2012-04-10Add a start record to the ktrace and use a special magic string "KTR"Mike Belopuhov
to identify ktrace files. kdump(1) will now refuse to operate on trace data without the start record and as a bonus will print only PID, unless an -H flag is specified to print PID/TID pairs. Initial diff, input from and ok deraadt, guenther.
2012-04-10Don't try to mmap a zero length file, from NetBSD.Antoine Jacoutot
Needed after the recent mmap(2) change. ok ariane@
2012-04-10remove unused variable.Charles Longeau
ok nicm millert
2012-04-08no more lint;Jason McIntyre
2012-04-08tedu lintJonathan Gray
ok tedu@ guenther@ krw@ espie@ deraadt@
2012-04-08unhook lint from the tree. The parser is incomplete and difficultJonathan Gray
to fix and there are several alternatives that don't tell quite so many dangerous lies. enthusiastic agreement from a bunch of people
2012-04-08Do not fire name timer when automatic-rename is off, from Tim Ruehsen aNicholas Marriott
while ago.
2012-04-07Rate-limit accepting of new connections while we are experiencing fdChristiano F. Haesbaert
exaustion for tcpbench. ok deraadt
2012-04-04tweak previous; ok ratchovJason McIntyre
2012-04-04Add a simple and clear (hopefully) description of what sndiod does.Alexandre Ratchov
discussed with deraadt and jmc
2012-04-04Fix memory leak in the error handling code path of failed deviceAlexandre Ratchov
creation. From jsg@
2012-04-01Fix comment for mouse bits.Nicholas Marriott
2012-04-01Fix some indentation.Nicholas Marriott
2012-04-01Simplify mouse input function.Nicholas Marriott
2012-04-01Minor style nits - return ().Nicholas Marriott
2012-04-01Turn some errors down to info.Nicholas Marriott
2012-04-01Fix option name.Nicholas Marriott
2012-04-01Add a layout history which can be stepped through with select-layout -uNicholas Marriott
and -U commands (bound to 'u' and 'U' by default).
2012-04-01Add pane_current_path format, suggested by Mikolaj Kucharski.Nicholas Marriott
2012-04-01Only exit mouse mode on scroll wheel when actually reaching the end ofNicholas Marriott
the history, from James Nylen.
2012-04-01Only find each window once no matter how many panes, from JonathanNicholas Marriott
Daugherty.
2012-04-01update currency exchange rates;Jason McIntyre
2012-04-01error out if accept() failsTheo de Raadt
2012-03-31err(1, NULL) can drive people insane, so please avoid it.Theo de Raadt
ok guenther
2012-03-30make the description of -c a little saner; ok nicmJason McIntyre
2012-03-30* use -A with traceroute6 to print the AS number; OK deraadt@ dcoppa@ henning@Gleydson Soares
* while here tweak bgplg.head increasing the <div> width to 800px so that this support better the tracing output with long v6 address; (requested by sthen@)
2012-03-29Add PermitOpen none option based on patch from Loganaden VelvindronDarren Tucker
(bz #1949). ok djm@
2012-03-29there must be an even number of node names, not pairs;Jason McIntyre
from Jan Stary
2012-03-29Don't spin if accept() fails because it is out of file descriptors,Alexandre Ratchov
instead set a flag that skips the listening socket from the poll() event loop. The flag is cleared whenever a file descriptor is closed allowing accept() to be retried. Explained by deraadt@
2012-03-28The Delete key should delete the character to the right of the cursor.lum
Posted to tech@ by Han Boetes from a bug report submitted to debian by Peter De Wachter (Bug#661732), via Trent W. Buck. No objections from tech@
2012-03-28Close an opendir(). From Igor Zinovik.lum
2012-03-28explain certificate extensions/crit split rationale. Mention requirementDamien Miller
that each appear at most once per cert.
2012-03-27Reverse the default of the -c flag from off to on to prevent the textNicholas Marriott
being displayed in the wrong place initially and then jumping when first redrawn (such as when searching). ok deraadt sthen