summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2010-07-23Plug mem leak.Ray Lai
OK nicm
2010-07-23Handle redirection to relative url's in the Location: header of httpAlexander Hall
responses. Yes, they are violating the rfc's. Yes they do exist anyway. Also fix a memory leak when url_encode fails to malloc, by simply err'ing out if so. feedback and ok phessler@
2010-07-23Reduce variable/function name and whitespace differences betweenRay Lai
cvs/rcs. OK xsa zinovik
2010-07-23Sync with cvs:Ray Lai
Clean up struct tm handling. Instead of calling gmtime/localtime and making copies (among other weird dances), use reentrant versions. Not being able to tell the time is a fatal error, so die if that happens. Diff originally from nicm. OK nicm xsa
2010-07-23Clean up struct tm handling. Instead of calling gmtime/localtimeRay Lai
and making copies (among other weird dances), use reentrant versions. Not being able to tell the time is a fatal error, so die if that happens. Diff originally from nicm. OK nicm xsa
2010-07-23Ciphers is documented in ssh_config(5) these daysDarren Tucker
2010-07-23Rename a bunch of variables and functions, removing the cvs_/rcs_Ray Lai
prefixes to reduce differences between cvs and rcs files. "yes!" nicm
2010-07-22Fix a crash: if remain-on-exit is set and the pane has exited, theNicholas Marriott
buffers may not be valid, so do not try to disable/enable them when switching to copy mode.
2010-07-22Fix the "no changes" detection when a file has RCS keywords.Todd C. Miller
This is consistent with GNU RCS. Also g/c an unused variable. OK xsa@ nicm@
2010-07-22Remove the VM_KMPAGESFREE sysctl. After the pmemrangeThordur I. Bjornsson
changes it was returing a constant 0, changing to cope with those changes makes less sense then just removing as it provides the user with no usefull information. sthen@ grepped the port's tree for me and found not hits, thanks! OK deraadt@, matthew@
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