So we're stat'ing files for the changes of files.
The detection of not_a_crontab files was added: files started with
dot aren't crontabs etc.
}
}
- if (fstat(fileno(f), &statbuf) < 0) {
- perror("fstat");
- goto fatal;
- }
- utimebuf.actime = statbuf.st_atime;
- utimebuf.modtime = statbuf.st_mtime;
-
/* Turn off signals. */
(void)signal(SIGHUP, SIG_IGN);
(void)signal(SIGINT, SIG_IGN);
perror(Filename);
exit(ERROR_EXIT);
}
+ /* Set it to 1970 */
+ utimebuf.actime = 0;
+ utimebuf.modtime = 0;
utime(Filename, &utimebuf);
again:
rewind(NewCrontab);
goto remove;
}
- if (utimebuf.modtime == statbuf.st_mtime) {
+ if (statbuf.st_mtime == 0) {
fprintf(stderr, "%s: no changes made to crontab\n",
ProgramName);
goto remove;