Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-20 | a few thoughts about longjmp in signal handlers | Theo de Raadt | |
2001-11-09 | Typos, siz -> size. | Aaron Campbell | |
2001-11-08 | My part of help, while i'm here: | Mike Pechkin | |
o) better -mdoc design; o) add section number to .Xr; o) close .Bd; o) start new sentence on a new line; jjbg@, millert@ ok | |||
2001-11-07 | list syslog_r as safe in signal handlers | Theo de Raadt | |
2001-11-06 | No need to include vm/vm.h here. | Artur Grabowski | |
2001-11-05 | No need to include vm/vm_param.h here, sys/sysctl.h does that for us. | Artur Grabowski | |
2001-11-05 | Some examples of how to use syslog_r() and why it is useful. deraadt@ ok. | Jean-Jacques Bernard-Gundol | |
2001-10-31 | Set default facility is noone is specified at syslog(3) time; millert@ jj@ ok. | Federico G. Schwindt | |
2001-10-31 | Add MLINK's for syslog_r and friends. | Federico G. Schwindt | |
2001-10-26 | run the approve for accounts with expiration time, too. ok millert@ | Markus Friedl | |
2001-10-24 | syslog_r() implementation. deraadt@ ok. | Jean-Jacques Bernard-Gundol | |
2001-09-22 | o kill some extra whitespace | Todd C. Miller | |
o remove remaining strcpy()s to avoid false positives when auditing o fix by one in a malloc() size param o fix buffer overflow in cgetnext() reported by Jouko Pynnonen o avoid needlessly setting errno to ENOMEM and when we *do* set it be sure to do so right before the return() o check snprintf() return value when building up a .db pathname and fall back to the text version if it the .db path is too long. o add a missing check for malloc() return value o kill register o memmove(), not bcopy() | |||
2001-09-21 | Typo; grange@rt.mipt.ru | Aaron Campbell | |
2001-09-11 | repair getgrgid_r() and getgrnam_r() as the standart says; from d@ | Peter Valchev | |
2001-09-06 | It is silly to reference the Tahoe architecture. | Todd C. Miller | |
2001-09-04 | Replace the deprecated BSD sigsetmask/sigblock/sigpause functions with their ↵ | Todd C. Miller | |
POSIX counterparts. | |||
2001-08-27 | Zero out entire FTS after allocating it instead of just zeroing out | Todd C. Miller | |
a few fields by hand; Closes PR 2033 | |||
2001-08-25 | Sync with sysctl(8): net.inet.tcp.slowhz is not changeable; bk@rt.fm. Wow, | Aaron Campbell | |
reported on 04/26/2000, I am a slacker. | |||
2001-08-23 | Add missing commas after auth_getitem and auth_setitem in NAME section. | Todd C. Miller | |
Problem found by makewhatis -p / espie. | |||
2001-08-23 | typo fix from NetBSD (groo@netbsd.org) | Paul Janzen | |
2001-08-18 | deal with -1 from snprintf, if it ever happens | Theo de Raadt | |
2001-08-18 | Add a possibility to add a random offset to the stack on exec. This makes | Artur Grabowski | |
it slightly harder to write generic buffer overflows. This doesn't really give any real security, but it raises the bar for script-kiddies and it's really cheap. The range of the random offsets is controlled by the sysctl kern.stackgap_random (must be a power of 2). This is disabled by default right now, but we'll set it to a reasonable value (1024?) soon, after some more testing. | |||
2001-08-15 | Typo fixes; andrew.hoerter@NeuStar.com | Aaron Campbell | |
2001-08-13 | Explicitly NUL terminate dst in strvis() and strvisx() in case | Todd C. Miller | |
we are passes an empty string. vis() and strnvis() were already OK. Based on patch by wilfried@openbsd.org | |||
2001-08-07 | Do the memset only if tcgetattr() fails just in case the failed | Todd C. Miller | |
tcgetattr() mucked with the passed in struct termios in some way. | |||
2001-08-07 | Keep a verbatim copy of the old struct termios instead of using | Todd C. Miller | |
flags to keep track of what we changed. Print a newline if echo is off, even if we didn't turn it off ourselves. Fixes art's problem with a newline not being printed when piping to less. | |||
2001-08-07 | typo. | Peter Valchev | |
2001-08-06 | o) We always close .Bl and .Bd tags; | Mike Pechkin | |
o) .Sh AUTHOR -> .Sh AUTHORS; o) We don't like .Pp before/after .Sh; o) We don't like .Pp before/after .Rs/.Re; o) NetBSD -> .Nx; o) OpenBSD -> .Ox; millert@ ok | |||
2001-08-03 | Update sp->fts_cur in fts_read() before returning NULL. This | Todd C. Miller | |
prevents a duplicate free() in fts_close(). From karls@inet.no with some other, similar cases added. | |||
2001-07-31 | Add missing LINK for cgetusedb | Kenneth R Westerback | |
2001-07-27 | varargs.h -> stdarg.h | Marco S Hyman | |
2001-07-17 | mode -> type in description to match the synopsis. | Aaron Campbell | |
2001-07-10 | put another YP-only piece inside the ifdef | Theo de Raadt | |
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-07-09 | a first pass at -Wall | Theo de Raadt | |
2001-07-05 | IPComp support. angelos@ ok. | Jean-Jacques Bernard-Gundol | |
2001-07-02 | Convert warn/warnx -> _warn/_warnx | Todd C. Miller | |
Should not really spew to stderr from libc but right now there is no other way to get a sensible error message to the user. | |||
2001-06-28 | fix one-byte overflows | Paul Janzen | |
2001-06-27 | typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@ | Damien Miller | |
2001-06-27 | Make the functions (which get linked in if <ctype.h> isn't #included) behave | Paul Janzen | |
correctly. Also, don't let them segfault. | |||
2001-06-27 | use strlcpy vs strncpy+a[len-1]='\0'. millert@ ok. | lebel | |
2001-06-25 | Document that behaviour is undefined if the argument isn't EOF or an unsigned | Paul Janzen | |
char. | |||
2001-06-24 | When splitting instance from username, treat '/' as a separator as | Todd C. Miller | |
well (for Kerb5). | |||
2001-06-18 | Add new cgetusedb() function to toggle reading of .db files in getcap(3). | Todd C. Miller | |
Needed for cap_mkdb to really DRT when given several input files or an output file with a different name from the input file. cvs: ---------------------------------------------------------------------- | |||
2001-06-18 | Fix a char vs. u_char problem I introduced in the last commit. | Todd C. Miller | |
2001-06-16 | Disable the STATUS character when reading passwords -- people seem to | Todd C. Miller | |
expect to be able to use ^T in a password. | |||
2001-06-03 | Don't bail out early for users w/o passwd file entries since we may | Todd C. Miller | |
want to cons up a fake prompt for challenge/response auth methods. markus@ OK'd. | |||
2001-06-03 | KERN_NPROCS documentation | Angelos D. Keromytis | |
2001-06-03 | struct diskstats now | Angelos D. Keromytis | |
2001-05-31 | Fix another case of CHDIR("..") pointed out by Bruce Evans | Todd C. Miller | |
<bde@zeta.org.au>. Instead of fixing these inline I've modified my fts_safe_changedir() function so it can be used in this case too. Thanks also to Kris Kennaway <kris@obsecurity.org>. |