CVSROOT: /cvs Module name: src Changes by: dera...@cvs.openbsd.org 2014/10/28 22:39:02
Modified files: usr.sbin/cron : cron.c externs.h Log message: use poll() instead of the select malloc/free dance which was used to avoid fd_set overflows. Back when I was young, I fixed these throughout the tree, and the world continued on ignoring the issue... The malloc/free dance was used because poll() was not very portable yet. Now poll() is commonplace, and we should use this safer API. ok guenther millert