Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-08 | Delete obsolete /* ARGSUSED */ lint comments. | Philip Guenther | |
ok miod@ millert@ | |||
2022-03-31 | man pages: add missing commas between subordinate and main clauses | Christian Weisgerber | |
jmc@ dislikes a comma before "then" in a conditional, so leave those untouched. ok jmc@ | |||
2020-12-13 | pr.1: note that -p is unsupported | Jason McIntyre | |
pr.c: spelling fix from andras farkas | |||
2020-01-22 | delete wasteful ;; | Theo de Raadt | |
ok tedu | |||
2019-06-28 | When system calls indicate an error they return -1, not some arbitrary | Theo de Raadt | |
value < 0. errno is only updated in this case. Change all (most?) callers of syscalls to follow this better, and let's see if this strictness helps us in the future. | |||
2017-12-23 | As we only use the .tv_sec field, simplify gettimeofday(2) -> time(3). | cheloha | |
ok tb@ jca@ | |||
2017-11-02 | Kill bogus use of LC_TIME | Jeremie Courreges-Anglas | |
Diff from Jan Stary, ok kettenis@ | |||
2015-11-11 | exit() after perror() for pledge failure. Perhaps this got introduced | Theo de Raadt | |
as a test idiom, either when pledge was young or during the transition to strings.... dunno | |||
2015-10-09 | Change all tame callers to namechange to pledge(2). | Theo de Raadt | |
2015-10-07 | tame "stdio rpath" | Theo de Raadt | |
2015-08-20 | Do not cast result of malloc/calloc/realloc* if stdlib.h is in scope | Theo de Raadt | |
ok krw millert | |||
2015-02-08 | in getopt() blocks, stop incrementing flag variable which are supposed | Theo de Raadt | |
to just be 0/1 ok miod florian | |||
2015-01-19 | Make some $OpenBSD$ lines prettier/standardier by eliminating | Kenneth R Westerback | |
superflous '*' after '/*' and adding blank after terminating '$'. Also eases parsing of the lines by simple awk scripts. Aesthetic approval from tedu@. | |||
2014-06-04 | undo my "no TZ support" notes; guenther says they're wrong | Jason McIntyre | |
ok guenther | |||
2014-04-18 | flesh out STANDARDS; | Jason McIntyre | |
2014-04-18 | - merge two sections on error messages and interrupts | Jason McIntyre | |
- move some non-standard sections into a more general CAVEATS - some macro cleanup | |||
2014-04-15 | - get the spacing right for -e, -i, -n, and -s | Jason McIntyre | |
- macro cleanup ok millert sobrado | |||
2013-11-26 | unsigned char casts for ctype | Theo de Raadt | |
ok krw | |||
2013-08-22 | Correct format string mismatches turned up by -Wformat=2 | Philip Guenther | |
suggestions and ok millert@ | |||
2013-04-18 | struct timezone is so 1980 | Theo de Raadt | |
2010-10-01 | more EXIT STATUS tweaks; from Daniel Dickman | Jason McIntyre | |
2010-09-29 | various EXIT STATUS fixes; from Daniel Dickman | Jason McIntyre | |
2010-09-03 | add an EXIT STATUS section for /usr/bin; | Jason McIntyre | |
2010-08-25 | fix potential use of uninitialized variable. | Charles Longeau | |
reported by gcc. ok jasper@ | |||
2010-08-17 | several fixes from netbsd: | Jasper Lievisse Adriaanse | |
Coverity CID 1660: Plug memory leaks. Coverity CID 2989: Use the error path to return. Coverity CID 3212: Don't return, goto out in all cases so that cleanup happens. ok otto@ | |||
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt | |
unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms | |||
2009-08-16 | replace ".Ar file ..." with ".Ar" whenever possible. | Igor Sobrado | |
ok jmc@ | |||
2009-02-08 | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few | Jason McIntyre | |
updates to follow; | |||
2009-02-07 | malloc(n * m) -> calloc(n, m); | Charles Longeau | |
ok ray@ moritz@ | |||
2008-04-18 | If memory allocation fails during error message buffering, print all hold | Tobias Stoeckmann | |
back messages and exit. ok millert | |||
2007-09-03 | last commit broke the tree because of missing parentheses. | Moritz Jodeit | |
ok henning@ | |||
2007-09-03 | sizeof char is 1; ok djm | Theo de Raadt | |
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-30 | - use a consistent text for STANDARDS | Jason McIntyre | |
- note which options are extensions to POSIX | |||
2007-03-03 | - make synopsis and usage() match the order of the options list | Jason McIntyre | |
- kill a raft of unneeded .Bk/.Ek mostly from Igor Sobrado | |||
2007-02-20 | Some cleanup including: | Moritz Jodeit | |
- use sig_atomic_t signal handler flag - atoi() -> strtonum() conversion - remove vararg without matching fmt string - some more lint/gcc silencing ok millert@ ray@ | |||
2004-06-21 | dont compare int with NULL, compare to 0 instead, otto@ ok | Anil Madhavapeddy | |
2003-11-09 | Typos in comments from Jared Yanovich <jjy2+ at pitt dot edu> | Otto Moerbeek | |
2003-08-04 | protos | Theo de Raadt | |
2003-06-12 | de-register and ansification; millert ok | Theo de Raadt | |
2003-06-10 | mostly ansi cleanup; pval ok | Theo de Raadt | |
2003-06-03 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-01-15 | typos; jmc@prioris.mini.pw.edu.pl | Theo de Raadt | |
2002-04-30 | arguement -> argument | Theo de Raadt | |
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-11-29 | make sure that va_start() has matching va_end() | Mike Pechkin | |
millert@ help&ok | |||
2001-11-19 | kill more registers | Mike Pechkin | |
millert@ ok | |||
2001-11-19 | guess what! more signal race fixes... | Theo de Raadt | |
2001-11-02 | use _exit() in signal handler | Theo de Raadt | |
2001-05-24 | Don't convert a single space before a tab stop into a tab when the -i | Peter Valchev | |
option is passed, as stated in the manual page. From NetBSD PR 5797 fix. millert@ ok |