Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-09-15 | check return value for setenv(3) for failure, and deal appropriately | Theo de Raadt | |
2000-08-21 | snprintf sprinkles; solar@false.com & I | Theo de Raadt | |
2000-08-21 | correct tmp file path; solar@false.com | Theo de Raadt | |
2000-08-21 | swap_uids_back; solar@false.com | Theo de Raadt | |
2000-08-21 | closelog, and check for various child setup failures; solar@false.com | Theo de Raadt | |
2000-08-21 | prototype repair | Theo de Raadt | |
2000-08-21 | strncpy not safe on overlapping strings | Theo de Raadt | |
2000-08-21 | save errno in handler | Theo de Raadt | |
2000-08-20 | Add calls to setusercontext() and login_get*(). We basically call | Todd C. Miller | |
setusercontext() in most places where previously we did a setlogin(). Add default login.conf file and put root in the "daemon" login class. | |||
2000-06-03 | Set SIGCHLD to SIG_DFL not SIG_IGN to prevent "perl -w" from | Todd C. Miller | |
complaining "Can't ignore signal CHLD, forcing to default". Setting SIGCHLD to SIG_IGN means "don't provide exit status for my children" on some OSes which is not what we want--we just don't want to catch SIGCHLD since our parent does that for us. | |||
2000-04-15 | - `coexist', not `co-exist'; it's not hyphenated. | Aaron Campbell | |
- Correct some .Nm usage. | |||
2000-03-23 | More pedantic man page formatting insanity, lalala | Aaron Campbell | |
2000-03-19 | Remove hard sentence breaks. Add $OpenBSD$ tags where appropriate. Some other | Aaron Campbell | |
cleanup along the way. | |||
2000-03-18 | fix parsing of commands after @ keywords and hourly bitmap handling; | Theo de Raadt | |
sheldonh@uunet.co.za | |||
2000-01-10 | the the | Theo de Raadt | |
1999-11-20 | Use mkstemp() for the temp file created in the tabs dir and | Todd C. Miller | |
clean up the temp file nicely if we are interupted. | |||
1999-08-30 | in cron_popen(), do an initgroups, setlogin() and chdir to the user's | Todd C. Miller | |
home dir to make things consistent with what cron does when executing a normal command on behalf of the user. I originally didn't think this was worth doing but changed my mind. | |||
1999-08-29 | Add comment to remind people not to use args in MAILARGS that will | Todd C. Miller | |
cause sendmail to drop it's setuid privs. | |||
1999-08-28 | Run sendmail as the user corresponding to the crontab entry. | Todd C. Miller | |
This keeps a user from abusing sendmail via the MAILTO var. Had to drop -or0s from MAILARGS since that causes sendmail to drop its privs (contrary to the sendmail docs). | |||
1999-08-27 | Make sure argv gets NULL terminated if cron entry has >= MAX_ARGS arguments. | Todd C. Miller | |
Gleaned from RedHat info. | |||
1999-08-06 | uid_t and gid_t, and use %u | Theo de Raadt | |
1999-07-09 | - remove all trailing whitespace | Aaron Campbell | |
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it... | |||
1999-07-07 | The proper order of the ``introductory'' macros in a man page is .Dd/.Dt/.Os. | Aaron Campbell | |
Out of the approximately 1450 man pages, only about 90 of them were wrong. Thanks to kwesterback@home.com for coming up with a script and patch to repair this. The patch also inserted a .Os macro in the few man pages that were missing one. | |||
1999-07-02 | consistent .Dd usage; proper format is: .Dd Month DD, YYYY | Aaron Campbell | |
1999-06-18 | new mandoc cron(8), crontab(1), and crontab(5) man pages; kwesterback@home.com | Aaron Campbell | |
1999-06-05 | remove trailing whitespace, some Nm cleanup | Aaron Campbell | |
1999-05-29 | Check size as well as mtime when deciding whether or not the file | Todd C. Miller | |
was changed during edit. Crontab patch from <andrew@untraceable.net>. It may be better to simply do a real compare inline. | |||
1999-05-23 | getopt(3) returns -1, not EOF | Aaron Campbell | |
1999-03-10 | Daylight Saving Time, not savings | Paul Janzen | |
1998-07-12 | disable debugging in crontab | Theo de Raadt | |
1998-07-10 | do not syslog() with "\n"; skipped smtpd/named/ipmon; 12 minutes of dabbling | Theo de Raadt | |
1998-05-08 | when handling % line breaks, correctly handle escaped % which should be ↵ | Theo de Raadt | |
embedded; fenner@parc.xerox.com | |||
1998-03-30 | Y2K fixes from Andreas.Gunnarsson@emw.ericsson.se; culled from various places | Theo de Raadt | |
1997-12-22 | handle timing normally except when clock jumps between 1 and 3 hours. If it | Theo de Raadt | |
jumps, attempt as best as possible to gaurantee that jobs DO run, but only run ONCE; patch by thompson@.tgsoft.com | |||
1997-09-21 | $OpenBSD$ | Theo de Raadt | |
1997-08-04 | save errno in sigchld handlers | Theo de Raadt | |
1997-07-17 | doc @ commands; mouse | Theo de Raadt | |
1997-04-12 | waitpid() can return -1 -- give a useful error message if it does. | Todd C. Miller | |
1997-04-12 | ign some signals for editor | Theo de Raadt | |
1997-04-12 | support SIGSTOP in editor, I cannot believe this has always been busted! | Theo de Raadt | |
1996-12-25 | no compile test after last change: no need for that umask too, i guess | Michael Shalayeff | |
1996-12-25 | do not need umask for mkstemp | Theo de Raadt | |
1996-12-17 | use snprintf when storing the string from strerror(). Who knows how | Todd C. Miller | |
long it could be esp. when locales come into the picture. | |||
1996-12-16 | avoid more oflows; at this stage paranoia exceeds reality by a lot since our ↵ | Theo de Raadt | |
passwd suite is fascist | |||
1996-12-14 | Check to make sure first char of command is not '*' since that will | Todd C. Miller | |
alway be a syntax error. | |||
1996-12-07 | months are from 1-12 not 0-12, netbsd pr#2806, mouse@Rodents.Montreal.QC.CA | Theo de Raadt | |
1996-11-01 | Check malloc/strdup ret val and deal. | Todd C. Miller | |
1996-10-31 | Proper strncpy() usage. | Todd C. Miller | |
1996-10-25 | proactive buf check | Theo de Raadt | |
1996-09-25 | Fixed buffer overflow. | bitblt | |