- fix open(creat) without a mode

This commit is contained in:
Bernhard Reutner-Fischer 2008-02-18 18:35:53 +00:00
parent b4133683a4
commit 27dd495b98

View File

@ -214,7 +214,7 @@ int crontab_main(int argc, char **argv)
/* Bump notification file. Handle window where crond picks file up
* before we can write our entry out.
*/
while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND)) >= 0) {
while ((fd = open(CRONUPDATE, O_WRONLY|O_CREAT|O_APPEND, 0600)) >= 0) {
struct stat st;
fdprintf(fd, "%s\n", pas->pw_name);