Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-26 | bzero -> memset. No binary change. | mmcc | |
ok tb@ | |||
2015-12-26 | Use pread/pwrite instead separate lseek+read/write for lastlog. | Philip Guenther | |
Cast to off_t before multiplication to avoid truncation on ILP32 ok kettenis@ mmcc@ | |||
2015-12-24 | Make gpt_chk_mbr() instances even more identicaller by always | Kenneth R Westerback | |
returning 0 or 1 since only boolean checks of the result are done. No need for EINVAL as a return value. | |||
2015-12-24 | Make all instances of gpt_chk_mbr() identical (bar static vs | Kenneth R Westerback | |
non-static) by passing disk size as 2nd parameter instead of the different structures holding the disk size info. The fifth copy of gpt_chk_mbr() in fdisk is a little specialer. No functional change. | |||
2015-12-24 | bzero -> memset. No binary change. | mmcc | |
2015-12-24 | use strndup instead of malloc/strncpy/nul | mmcc | |
ok krw@ | |||
2015-12-24 | more e-mail -> email | mmcc | |
2015-12-24 | Add prototype for gpt_chk_mbr() to i386_installboot.c. Add 'static' to | Kenneth R Westerback | |
declarations of gpt_chk_mbr() to match prototypes in efidev.c and softraid.c. | |||
2015-12-24 | revert check_tcp rev 1.41 by yasuoka@ | Sebastian Benoit | |
This part was not meant to be commited, only the bits in check_icmp.c and relayd.h are ok. ok yasuoka@ | |||
2015-12-24 | adress -> address | Anthony J. Bentley | |
2015-12-24 | completly -> completely | mmcc | |
2015-12-23 | Remove NULL-checks before free(). I think I've almost scrubbed the | mmcc | |
entire tree of these... | |||
2015-12-23 | expand message between processes to 2048 bytes. Andre Smagin found | Theo de Raadt | |
a case where it can reach 637 bytes of output, so use almost 4x (he suggested 1024) | |||
2015-12-23 | Tidy up output. | Antoine Jacoutot | |
2015-12-22 | fix sendmail options parsing | Gilles Chehade | |
diff from Serguey Parkhomovsky <sergueyparkhomovsky@gmail.com> | |||
2015-12-22 | commited -> committed | mmcc | |
2015-12-22 | assign pointers to NULL rather than 0 | mmcc | |
2015-12-22 | update examples | Gilles Chehade | |
diff from Serguey Parkhomovsky <sergueyparkhomovsky@gmail.com> ok sunil@ | |||
2015-12-22 | remove a NULL-check before free() | mmcc | |
2015-12-22 | remove a NULL-check before free() | mmcc | |
2015-12-22 | make it clear this needs to be run only for db files | Jason McIntyre | |
since smtpd has switched to using plain files by default; ok sunil gilles | |||
2015-12-22 | Kill a trailing whitespace that snuck in with previous commit. | Sunil Nimmagadda | |
2015-12-22 | Initialize a char* to NULL rather than 0. | mmcc | |
2015-12-22 | commiting -> committing | mmcc | |
2015-12-22 | Wrap long lines. | Sunil Nimmagadda | |
Ok gilles@ jung@ | |||
2015-12-22 | Wrap long lines. | Sunil Nimmagadda | |
Ok gilles@ jung@ | |||
2015-12-21 | remove NULL-checks before free() | mmcc | |
2015-12-21 | remove NULL-check before free() | mmcc | |
2015-12-21 | Remove NULL-checks before free(). | mmcc | |
2015-12-21 | Start accepting some sendmail compatible commandline arguments. | Sunil Nimmagadda | |
This diff teaches smtpctl to understand '-bi -O AliasFile=<path_aliases>' and generate aliases.db. Ok gilles@ jung@ millert@ | |||
2015-12-21 | Only run newaliases(8) if we already have an aliases db. | Antoine Jacoutot | |
2015-12-20 | need to include err.h for err(). | Sebastian Benoit | |
ok deraadt@ | |||
2015-12-20 | Remove unnecessary options: | Robert Peichaer | |
- in fsck_msdos, '-f' option is a no-op - newfs_msdos does not need '-t msdos' OK krw@ | |||
2015-12-20 | remove redundant log | Gilles Chehade | |
2015-12-19 | No need for an extra log.h | Reyk Floeter | |
OK bcook@ | |||
2015-12-19 | Remove NULL-check before free(). | mmcc | |
2015-12-19 | Remove NULL-checks before free(). | mmcc | |
2015-12-19 | Remove NULL-check before free(). | mmcc | |
2015-12-19 | Remove NULL-check before free(). | mmcc | |
2015-12-19 | Remove NULL-check before free(). | mmcc | |
2015-12-19 | Add pledge(2). It is not currently possible to pledge -u and -U | tb | |
because of chown(2) and chmod(2). If -u and -U aren't specified, the basic pledge is "stdio rpath getpw". "getpw" is used to resolve uid and gid to names and vice versa. The -r flag makes use of rmdir(2) and unlink(2), so we need "cpath" The -t flag uses utimes(2), so we need "fattr" ok deraadt@ | |||
2015-12-19 | Switch and sync to the log.c variant from httpd/relayd/iked/snmpd/vmd. | Reyk Floeter | |
OK bcook@ jung@ | |||
2015-12-19 | Move log_sockaddr() to from log.c to util.c as it is a local addition | Reyk Floeter | |
and actually not a "logging" function. No functional change. | |||
2015-12-17 | s/failes/failed/g | mmcc | |
2015-12-17 | add return code to newrequest to distinguish between cache hit and error. | Ted Unangst | |
we want to keep looping for more requests after a hit, not stop. (though i'm reconsidering if the looping is worthwhile. maybe should just return to kevent() after each request.) | |||
2015-12-17 | regen NSD's autoconf script, forgotten with the update - noticed by Brad | Stuart Henderson | |
2015-12-17 | Move vcpu register state init to vmd. Allows vmd bootloader to make the | Mike Larkin | |
decision as to how the vcpu should be set up for initial start and reset. Also removes some hardcoded register constants from vmm(4). ok jsing@, mpi@ | |||
2015-12-17 | Replace 'arc4random() % (2^k - 1)' by 'arc4random() & (2^k - 1)' to | tb | |
avoid modulo bias. Part of a diff by Matthew Martin, reviewed by deraadt@ and me. ok deraadt@ | |||
2015-12-17 | Add missing $OpenBSD$ tags. | tb | |
2015-12-17 | Replace arc4random() % i by arc4random_uniform(i) to avoid modulo bias. | tb | |
Part of a diff by Matthew Martin, reviewed by deraadt@ and me. ok deraadt@ |