summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
2007-05-25Call fatal() if we are missing an argument. From Tobias Stoeckmann.Ray Lai
OK niallo@.
2007-05-25Call fatal() if we are missing an argument. From Tobias Stoeckmann.Ray Lai
OK niallo@.
2007-05-25Check vasprintf for failure.Ray Lai
OK niallo@.
2007-05-25"interupt" -> "interrupt" in various comments. Mostly from Diego Casati.Kenneth R Westerback
2007-05-25"boundries" -> "boundaries" in various comments. Started by Diego Casati.Kenneth R Westerback
2007-05-25Sanity check time spec and if no century is specified, just use theTodd C. Miller
current one.
2007-05-24If century not specified used the current one instead of aassuming 2000.Todd C. Miller
2007-05-23Fix cut and pasto, seconds value is now stored in dot, not p.Todd C. Miller
2007-05-23Set tm_sec to 0 if no seconds were specified by the timespec (-t) arg.Todd C. Miller
2007-05-23- attempt to explain (sub)sections before we start discussing themJason McIntyre
- merge the "-s section" and "section" parts: it doesn't make sense to keep them separate
2007-05-23update the section list;Jason McIntyre
2007-05-23for -S, note that machines have pages for all archs, and this mechanismJason McIntyre
allows one to view pages for one arch whilst using another (this seems to be not always clear to people);
2007-05-23improve the descriptions for -f and -k, specifically making itJason McIntyre
clear that they run, respectively, whatis(1) and apropos(1);
2007-05-23Sanity check the time argument specified by the -t argument. SomeTodd C. Miller
checks adapted from date(1). Now prevents scheduling jobs in the past just like the standard (ie: not -n) at(1) date parsing.
2007-05-23remove some unneccessary bracketing;Jason McIntyre
2007-05-22Note that the global -x option is kept for compatibility (for now) and hasXavier Santolaria
no effect.
2007-05-22zap double include; from p_nowaczyk AT o2.plDamien Miller
2007-05-21fix -Wall warning about unused variable `errstr', which was introduced in ↵Constantine A. Murenin
the previous revision; ok deraadt, otto, tedu
2007-05-20rewrite DIAGNOSTICS to avoid confusion about which application returnsJason McIntyre
what, and when; started by Jeffrey 'jf' Lim, with some correction from Ingo Schwarze; ok otto
2007-05-20since less(1) and more(1) are the same point, don;t list them bothJason McIntyre
in SEE ALSO;
2007-05-20Add support for zmore being called as zless,Jonathan Gray
same behaviour but pager defaults to less instead of more. Incorporating feedback from millert@ and jmc@ ok millert@ simon@
2007-05-19improve the descriptions of "section" and "subsection"; ok millertJason McIntyre
2007-05-19- Rewrite argument handling to not pass closed fd's to asa()Moritz Jodeit
- Reorder fgetln() handling to prevent duplicate code - Some more cleanup Initial diff from Tobias Stoeckmann. ok jaredy@
2007-05-17djm owes me a vb and a tism cd for breaking ssh compilationJolan Luff
2007-05-17pass received SIGINT from monitor to postauth child so it can cleanDamien Miller
up properly. bz#1196, patch from senthilkumar_sen AT hotpop.com; ok markus@
2007-05-17fall back to gethostname() when the outgoing connection is notDamien Miller
on a socket, such as is the case when ProxyCommand is used. Gives hostbased auth an opportunity to work; bz#616, report and feedback stuart AT kaloram.com; ok markus@
2007-05-17Check getpwnam() return value for NULL before dereferencing it.Moritz Jodeit
ok ray@ millert@
2007-05-17Check getpwuid() return value for NULL before dereferencing it.Moritz Jodeit
ok ray@ millert@
2007-05-17Fix fgetln(3) handling of lines without trailing newline.Moritz Jodeit
From Tobias Stoeckmann. ok ray@ millert@
2007-05-17bz#1286 stop reading and processing commands when input or output bufferDamien Miller
is nearly full, otherwise sftp-server would happily try to grow the input/output buffers past the maximum supported by the buffer API and promptly fatal() based on patch from Thue Janus Kristensen; feedback & ok dtucker@
2007-05-17save and restore errno when logging; ok deraadt@Damien Miller
2007-05-17Remove extra return statement, from tbert from lint.Ray Lai
OK jaredy@ and moritz@
2007-05-17Don't free unused variable, from tbert.Ray Lai
OK niallo && xsa
2007-05-17Remove nonsensical dereference. From tbert.Ray Lai
OK niallo && xsa
2007-05-16Figure out DST by setting tm_isdst element to -1.Xavier Santolaria
From Tobias Stoeckmann. OK otto@.
2007-05-16In remote setup, write sent files to inlog (if specified) instead of outlog.Xavier Santolaria
Matches GNU CVS' behaviour. From Tobias Stoeckmann.
2007-05-16Allow stripping of files, even if the destination filenameMoritz Jodeit
starts with a dash. ok millert@ jaredy@ ray@
2007-05-16open() returns -1 on error, not NULL. From Tobias Stoeckmann.Xavier Santolaria
2007-05-16Add missing ssize_t rlen, used when DEBUG is defined, and onlyRay Lai
define c when DEBUG is undefined. From Pav Lucistnik <pav at FreeBSD>. While here, correct format strings to match ssize_t. OK moritz@.
2007-05-15Remove useless NOxxx defines and use NULL instead.Moritz Jodeit
No binary change. OK ray@
2007-05-14use sys/queue macros instead of accessing fields directly.Pierre-Yves Ritschard
no binary change. ok krw@
2007-05-12Prevent core dump if strpbrk() returns NULL. Reported to bugs@ byRay Lai
Pav Lucistnik <pav at FreeBSD>, thanks! OK otto@.
2007-05-12Change 0x30 to more readable '0'.Ray Lai
OK xsa@.
2007-05-11typo in previous commit;Xavier Santolaria
2007-05-11fix format of the CVSROOT string in comments.Xavier Santolaria
from Tobias Stoeckmann. OK niallo@.
2007-05-11Sync with editit from sendbug.Ray Lai
2007-05-11cvs_logmsg_edit no longer fails with ECHILD.Ray Lai
Add comment describing cvs_logmsg_edit usage.
2007-05-11Sync with editit from sendbug.Ray Lai
2007-05-11If fork fails with EAGAIN, ignore errno and fail. Looping justRay Lai
worsens the problem. cloder@ and deraadt@ agree.
2007-05-11Instead of returning -1 and setting errno to ECHILD if the editorRay Lai
has a non-zero exit status, just return the exit status on success. Hard errors still return -1. If the editor is killed, return -1 and set EINTR.