summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2010-07-22Let systat -N states resolve network addressesgiovanni
help and ok sthen@ lum@ ok canacar@
2010-07-22remove some groff \s escapes, which we do not support;Jason McIntyre
2010-07-22keep our lists consistent for the exit values blurb; from daniel dickmanJason McIntyre
2010-07-22document exit returns; from daniel dickmanJason McIntyre
2010-07-21In the SYNOPSIS, .Nm at the beginning of an input line startsIngo Schwarze
an .Nm block, and gets special handling (new line, indentation). But .Nm in the middle of a line is just a normal in-line element, so make sure it does NOT get the special handling. Partly fixes the test(1) SYNOPSIS; indentation after "[" is still excessive, which is an unrelated and more difficult issue. Reminded of the problem by jmc@; OK kristaps@.
2010-07-21document exit values; from daniel dickmanJason McIntyre
2010-07-21document exit values; from daniel dickmanJason McIntyre
2010-07-21fix the barmy exit returns formatting; from daniel dickmanJason McIntyre
2010-07-21missing argument to Ex; from daniel dickmanJason McIntyre
2010-07-21more HISTORY; from daniel dickmanJason McIntyre
2010-07-21Only use username if author is NULL. Fixes "ci -wusername" when runRay Lai
as root. OK nicm
2010-07-21Remove reference to non-existent behaviour.lum
ok canacar@
2010-07-21sync timingsafe_bcmp() with the one dempsky@ committed to sys/lib/libkernDamien Miller
2010-07-20Remove setresguid since it is no longer needed.lum
ok matthew@ millert@ deraadt@
2010-07-20daniel dickman has folded the relevant bits of the files being removedJason McIntyre
into yacc.1 - thanks! ok millert deraadt
2010-07-19document new. hints from jmc@Marc Espie
2010-07-19J. C. Roberts noted that Kristaps' man.7 is already better than theIngo Schwarze
old groff_man.7 we currently install. As a first step, move the new manual where it belongs, not changing any content except the OpenBSD marker. The plan is, after some polishing, to install man.7 and not install groff_man.7 any longer. jmc@, sobrado@ and kristaps@ agree
2010-07-19Don't return if in the current window since we may want to report a bellNicholas Marriott
(if bell-action any/current), just clear the flag so the status line doesn't show the bell.
2010-07-19Correct $OpenBSD$ stuffMarc Espie
2010-07-19two small changes:Marc Espie
- allow variables in SysV modifiers, as requested by matthieu@ (since recursive variables are an extension, this just extends the extension) - variation on :Q called :QL (quote list), which does quote every character EXCEPT for whitespace. e.g., toto: @for i in ${VAR:QL} ...
2010-07-19Add prototype and remove unnecessary includes.lum
ok canacar@
2010-07-19Send the \n to stdout with the message, not stderr... doh.Nicholas Marriott
2010-07-19remove non-standard section header; from Daniel DickmanJason McIntyre
2010-07-19add a "ControlPersist" option that automatically starts a backgroundDamien Miller
ssh(1) multiplex master when connecting. This connection can stay alive indefinitely, or can be set to automatically close after a user-specified duration of inactivity. bz#1330 - patch by dwmw2 AT infradead.org, but further hacked on by wmertens AT cisco.com, apb AT cequrux.com, martin-mindrot-bugzilla AT earth.li and myself; "looks ok" markus@
2010-07-19remove Xr to self; from Daniel DickmanJason McIntyre
2010-07-19Remove unused function.lum
ok canacar@
2010-07-19bz#1797: fix swapped args in upload_dir_internal(), breaking recursiveDamien Miller
upload depth checks and causing verbose printing of transfers to always be turned on; patch from imorgan AT nas.nasa.gov
2010-07-18remove some nasty hacks;Jason McIntyre
2010-07-17Plug memory leak.Ray Lai
OK nicm
2010-07-16Simplify print_status by removing NULL handling.Ray Lai
OK nicm
2010-07-16Close FILEs when fork fails.Ray Lai
OK nicm
2010-07-16Combine two diff_output lines into one, from diff.Ray Lai
OK stsp xsa nicm
2010-07-16Move the description of load averages/top line to a better place.lum
Suggestions and ok canacar@
2010-07-16more timing paranoia - compare all parts of the expected decryptedDamien Miller
data before returning. AFAIK not exploitable in the SSH protocol. "groovy" deraadt@
2010-07-16diff exits 2 on error, not 1.Ray Lai
OK millert
2010-07-16Make the terminal checking capability of systat better.lum
Checks taken from top(1) screen.c/init_termcap() ok canacar@ sthen@ nicm@
2010-07-16avoid bogus compiler warningDamien Miller
2010-07-16Text ending in a full stop, exclamation mark or question markIngo Schwarze
should not flag the end of a sentence if: 1) The punctuation is followed by closing delimiters and not preceded by alphanumeric characters, like in "There is no full stop (.) in this sentence" or 2) The punctuation is a child of a macro and not preceded by alphanumeric characters, like in "There is no full stop .Pq \&. in this sentence" jmc@ and sobrado@ like this
2010-07-16After .Sm on, spacing ought to restart right away, before the next token,Ingo Schwarze
and not with a delay, after the next token. But be careful not to cause leading white space at the beginning of a line or column. Improves chmod(1), ksh(1), tar(1), ps(1) and probably many more. ok kristaps@ jmc@ sobrado@
2010-07-15document .Sm; prodded by kristaps@Ingo Schwarze
2010-07-15some escapes i missed;Jason McIntyre
2010-07-15cvs and rcs use diff_output() to print everything since it is notRay Lai
always to stdout. A large number of differences are due to this. This diff reduces many more differences between diff and cvs/rcs. Personally I think it's kinda ugly. =( "Looks fine" millert
2010-07-15repair incorrect block nesting, which screwed up indentation;Ingo Schwarze
problem reported and fix OK by jmc@
2010-07-15More delimiters that need quoting inside macros, hunted down by jmc@,Ingo Schwarze
who asked me to commit because he is just running out of the door.
2010-07-15Remove unused arguments from check(). From cvs/rcs.Ray Lai
OK millert
2010-07-15Die immediately if pread fails. It's a fatal error so treat it asRay Lai
such. Besides, we weren't handling the NULL being returned. From diff. Minor nit by nicm. OK xsa stsp nicm
2010-07-15Use warnx instead of warn since errno wasn't set. From diff.Ray Lai
OK xsa stsp nicm
2010-07-15Sync with diff/diffreg.c r1.75:Ray Lai
Return -1 on error as advertised. Handle case when only one stream failed. OK xsa, stsp
2010-07-15whitespaceMarc Espie
2010-07-15whitespaceMarc Espie