Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-30 | now that ibuf_free() checks for null, we can remove the check here. | Sebastian Benoit | |
ok mmcc@ millert@ | |||
2015-12-30 | now that ibuf_free() checks for null, we can remove the check here. | Sebastian Benoit | |
ok mmcc@ millert@ tb@ claudio@ | |||
2015-12-30 | d_namlen is not portable, there is no reason to keep a delta with -portable and | Joerg Jung | |
it is not even "optimizing" things, this is a startup loop which will not bring any benefit at runtime. thus, change it and reduce diff to -portable. ok gilles sunil | |||
2015-12-29 | Don't assume fprintf() will set the FILE * error condition. | Todd C. Miller | |
Instead, check the return value of fprintf() and fflush() and call clearerr() before returning on error. OK jca@ | |||
2015-12-29 | Change send_line() return value to be 1/0 like get_responses() and | Todd C. Miller | |
check the return value in the callers. The inital value of inheaders has been changed to improve readability. OK gilles@ jung@ | |||
2015-12-29 | When running syslogd in debug mode, use a callback to print the | Alexander Bluhm | |
libevent messages. Before the code was removed from libevent, the library itself printed that to stderr. OK nicm@ | |||
2015-12-28 | Replace lseek/[read|write] with pread|pwrite. | Kenneth R Westerback | |
ok millert@ a while ago. | |||
2015-12-28 | remove spaces after '!' | Joerg Jung | |
no binary change ok millert | |||
2015-12-28 | build mopd with -Werror-implicit-function-declaration | Sebastian Benoit | |
ok tb@ | |||
2015-12-28 | build all lpr tools with -Werror-implicit-function-declaration | Sebastian Benoit | |
ok tb@ | |||
2015-12-28 | fprintf() may not set the error indicator on failure so just use | Todd C. Miller | |
fputs() + putc() to write the string and trailing newline. OK jung@ | |||
2015-12-28 | remove unused copy argument from addarg() | Joerg Jung | |
diff from Serguey Parkhomovsky via tech@ ok sunil millert | |||
2015-12-28 | build smtpd and smtpctl with -Werror-implicit-function-declaration | Sebastian Benoit | |
ok tedu@ | |||
2015-12-28 | build most of usr.sbin with -Werror-implicit-function-declaration | Sebastian Benoit | |
ok florian@ | |||
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 | |