Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-22 | Remove obsolete comment. | Mark Kettenis | |
2015-12-22 | assign pointers to NULL rather than 0, remove a needless cast | 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 | Re-add config includes | Stefan Fritsch | |
These got lost in previous commit. This broke ppp, nmea, msts, endrun. Found the hard way by David Coppa | |||
2015-12-22 | remove NULL-checks before free() | mmcc | |
2015-12-22 | remove a NULL-check before free() | mmcc | |
2015-12-22 | remove a NULL-check before free() | mmcc | |
2015-12-22 | remove a NULL-check before free() | mmcc | |
2015-12-22 | cast toupper's argument to unsigned char | mmcc | |
ok millert@ | |||
2015-12-22 | The Apple SMC is implemented on a H8S/2117 chip. Communication with the chip | Mark Kettenis | |
becomes much more reliably if we pay attention to the IBF and OBF flags. This removes the need for excessive delays and retries, making operations complete in microseconds instead of seconds. This diff also removes flushing the read buffer after a read operations. This doesn't seem to be necessary, but we might need to put that back if the length of a reply changes for some keys. ok jung@, deraadt@ | |||
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 | The loop index in grep_cmp() should be size_t to match the type of | Todd C. Miller | |
the length parameter. The return value of grep_cmp() is only used in a boolean context so make it return bool instead of the index. OK mmcc@ | |||
2015-12-22 | sync | Theo de Raadt | |
2015-12-22 | Kill a trailing whitespace that snuck in with previous commit. | Sunil Nimmagadda | |
2015-12-22 | Remove commands that are not implemented, at the moment. Added by | Mark Lumsden | |
accident in previous diff. | |||
2015-12-22 | - yet another tiny step towards MP PF. This time we need to make sure | Alexandr Nedvedicky | |
statekey attached to packet stays around, while accepted packet is routed through IP stack. OK mpi@, henning@ | |||
2015-12-22 | Correct expected results on v6 mcast bind on ANY, and add comments to | Vincent Gross | |
explain why they are expected. | |||
2015-12-22 | Do not return EEXIST if the same address is added twice. | Martin Pieuchot | |
Reported by sebastisa@. ok sebasitia@, stsp@, florian@, vgross@ | |||
2015-12-22 | assign pointers to NULL rather than 0 | mmcc | |
2015-12-22 | remove needless allocation casts | mmcc | |
2015-12-22 | initialize a pointer to NULL rather than 0 | mmcc | |
2015-12-22 | Assign pointer variables to NULL rather than 0. No functional change. | mmcc | |
2015-12-22 | Initialize a char* to NULL rather than 0. | mmcc | |
2015-12-22 | commiting -> committing | mmcc | |
2015-12-22 | Remove a couple needless allocation casts. No binary change. | mmcc | |
2015-12-22 | Remove a needless allocation cast. No binary change. | mmcc | |
2015-12-22 | Remove a couple needless allocation casts. No binary change. | 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-22 | Now that default smtpd.conf aliases table has been switched to | Sunil Nimmagadda | |
'file' backend, we no longer have to generate the .db files. Ok gilles@ | |||
2015-12-21 | minor tweaks; | Jason McIntyre | |
2015-12-21 | regen MAKEDEV | Stefan Fritsch | |
2015-12-21 | add virtio-console driver | Stefan Fritsch | |
This patch adds a new driver for use of virtio-console devices as ttys. It's still in an early state and not compiled by default, yet. Currently it is only wired into amd64. i386 is still missing. Discussed with uebayasi@, deraadt@ | |||
2015-12-21 | Don't attempt to remove unix socket as it's owned by root and | Alexandre Ratchov | |
we've already dropped root privileges. | |||
2015-12-21 | regen MAKEDEV | Stefan Fritsch | |
2015-12-21 | Move ppp, nmea, endrun, and msts prototypes to tty.h | Stefan Fritsch | |
Fix inconsistent arguments for pppopen/pppclose/pppstart. Use passed in argument p in pppopen instead of curproc. "Looks good to me" deraadt@ | |||
2015-12-21 | remove NULL-checks before free() | mmcc | |
2015-12-21 | remove NULL-check before free() | mmcc | |
2015-12-21 | Recognise the rdseed instruction introduced with Broadwell. | Jonathan Gray | |
Similar to changes made in FreeBSD. ok kettenis@ | |||
2015-12-21 | Goto a loop_end label rather than using a continue statement for an | mmcc | |
error condition in an inner loop. Found with Coccinelle. Pointed out by tedu@, ok kettenis@ and deraadt@ about three months ago. | |||
2015-12-21 | Introduce xen_intr_mask and xen_intr_unmask primitives | Mike Belopuhov | |
Mask the event port during xen_intr_establish, but don't set the masked flag in the intsrc. By providing mask and unmask routines we allow the device to decide when to perform these actions. The port will still be unmasked during xen_intr_enable. This allows netfront to fulfil the intr_barrier pattern requirements fairly easily and at the same time should be sufficient for diskfront that doesn't need to fiddle with interrupt masking. | |||
2015-12-21 | Remove NULL-checks before free(). | mmcc | |
2015-12-21 | Cleanup hypercall subsystem type defines | Mike Belopuhov | |
2015-12-21 | Don't unmask the port in xen_intr_establish | Mike Belopuhov | |
2015-12-21 | Switch to 'file' backend for aliases table for default configuration. | Sunil Nimmagadda | |
Ok gilles@ jung@ millert@ | |||
2015-12-21 | add parsing tests that must not segfault based on Jonathan Gray initial | Marc Espie | |
report. | |||
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-21 | Pass the destination and mask to rtable_mpath_reprio() in order to not | Martin Pieuchot | |
use ``rt_node'' with ART. |