Age | Commit message (Expand) | Author |
2002-08-10 | Just zero out pw_passwd in the pw_dup()'d copy. There's no need | Todd C. Miller |
2002-08-08 | Move closelog() into log_close() function and call that instead | Todd C. Miller |
2002-08-08 | Make wakeupKind an enum for clarity at Vixie's request | Todd C. Miller |
2002-08-07 | paranoia: zero out pw_passwd since we don't need it | Todd C. Miller |
2002-08-04 | Extra paranoia -- check that pw_name matches the crontab user's name. | Todd C. Miller |
2002-08-02 | o Instead of passing "*system*" as the fname to process_crontab() | Todd C. Miller |
2002-07-17 | Include limits.h since we use LONG_MAX; we squeaked by with an | Todd C. Miller |
2002-07-15 | fix typo (pw vs. pwd) in unused code | Todd C. Miller |
2002-07-15 | Pass e->pwd to auth_setpwd() to avoid extra passwd lookup in BSD auth routines | Todd C. Miller |
2002-07-15 | Move login_close() out of #ifdef BSD_AUTH block | Todd C. Miller |
2002-07-15 | -Wall was for testing | Todd C. Miller |
2002-07-15 | Move atrun(8) functionality into cron(8) proper. This fixes the | Todd C. Miller |
2002-07-12 | Do not collapse \\ -> \ in a command, the shell will be unhappy with | Todd C. Miller |
2002-07-11 | No need to compare sizes of new/old crontab file now that we | Todd C. Miller |
2002-07-11 | More syncing with my cron 4.0 patch tree, basically cosmetic: | Todd C. Miller |
2002-07-11 | Add a new error code for memory allocation failures, e_memory and | Todd C. Miller |
2002-07-09 | o Add _PATH_CRON_PID which is built up from PIDDIR and PIDFILE via string | Todd C. Miller |
2002-07-09 | o Rename clean_turds() in crontab.c to die() and just _exit(ERROR_EXIT) | Todd C. Miller |
2002-07-09 | We already did a closelog(); no need for it here. | Todd C. Miller |
2002-07-08 | minor cosmetic change to reduce diffs | Todd C. Miller |
2002-07-08 | Merge in some changes from Paul Vixie's tree; most are cosmetic | Todd C. Miller |
2002-06-23 | uid_t and gid_t are unsigned | Theo de Raadt |
2002-06-21 | Correctly close the writing end of the pipe when dup'ing the fd to | Todd C. Miller |
2002-06-14 | spelling; from Brian Poole <raj@cerias.purdue.edu> | Todd T. Fries |
2002-05-28 | Kill an sscanf() in favor of strtol() | Todd C. Miller |
2002-05-28 | use %ld (long) for pid | Theo de Raadt |
2002-05-22 | Set close-on-exec flag for the socket cron selects on. | Todd C. Miller |
2002-05-22 | Remove pid file if sent SIGINT or SIGTERM before exiting. | Todd C. Miller |
2002-05-22 | o avoid stdio in acquire_daemonlock() so we don't leak FILE * memory | Todd C. Miller |
2002-05-21 | Better handling of negative timeval than last commit. | Todd C. Miller |
2002-05-20 | Add a check for negative values in struct timeval after the timersub(). | Todd C. Miller |
2002-05-11 | .Xr at 1 | Todd C. Miller |
2002-05-11 | Put options in a real list, preceded by "The options are as follows" | Todd C. Miller |
2002-05-09 | prototype open_socket() | Todd C. Miller |
2002-05-09 | nuke unused variable | Todd C. Miller |
2002-05-09 | allowed() is only called once so there is no need to use static | Todd C. Miller |
2002-05-09 | Missing piece from last commit. | Todd C. Miller |
2002-05-09 | Better error handling for in_file(); from Owl | Todd C. Miller |
2002-05-09 | crontab is no longer setuid root, it is now setgid crontab. | Todd C. Miller |
2002-05-08 | o Use proper #defines; It is HAVE_*, not HAS_* | Todd C. Miller |
2002-02-19 | Fix gethostname() usage. | Mike Pechkin |
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ... | Todd C. Miller |
2002-01-09 | Kill volatile now that jongjmp is history. | Todd C. Miller |
2001-12-20 | Cause crontab to send SIGUSR1 when a user's crontab file has changed. | Todd C. Miller |
2001-12-13 | Mention that cron should be started late in the rc file and why. | Todd C. Miller |
2001-12-12 | o pids should be pid_t, not int | Todd C. Miller |
2001-12-11 | If we receive a signal during the sleep(), run signal handlers as | Todd C. Miller |
2001-12-07 | do not call abort(), it is tasteless | Theo de Raadt |
2001-11-17 | save errno in signal handler | Theo de Raadt |
2001-10-24 | When becoming a daemon, dup stdin, stdout, and stderr to /dev/null | Todd C. Miller |