- fix open(creat) without a mode
This commit is contained in:
parent
b4133683a4
commit
27dd495b98
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue