CVSROOT: /cvs Module name: src Changes by: mill...@cvs.openbsd.org 2018/02/04 20:52:37
Modified files: usr.sbin/cron : database.c funcs.h user.c Log message: Pass a FILE * instead of a file descriptor into load_user() and perform the fclose() in process_crontab(). Previously we were closing the crontab fd twice--once in load_user() via fclose() and once in process_crontab(). OK tb@