Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-07-25 | When parser_file() fails, print correct line number. | Mike Pechkin | |
millert@ ok | |||
2003-07-01 | Add support for -a dirs on different filesystems. | Todd C. Miller | |
From FreeBSD via S. Deinhard. | |||
2003-06-26 | more proto fixes | Theo de Raadt | |
2003-06-17 | Sync with share/misc/license.template and add missing DARPA credit | Todd C. Miller | |
where applicable. | |||
2003-06-10 | Whoops, <= 0 should be < 0. Problem noticed by marc@ | Todd C. Miller | |
2003-06-09 | o replace remaining strtoul() with strtol() and check for < 0 | Todd C. Miller | |
o use %lld, not %qd in printf and scanf o fix some whitespace issues | |||
2003-06-09 | Use strtol() not strtoul() so we can detect a negative number in a pid file. | Todd C. Miller | |
2003-06-09 | Need to include time.h to get ctime() proto. | Todd C. Miller | |
2003-06-03 | terms 3 & 4 cleanup based on "terms" file | Theo de Raadt | |
2003-06-03 | Use an ISC-tyle license for all my code; it is simpler and more permissive. | Todd C. Miller | |
2003-05-15 | From Brian Poole | Todd C. Miller | |
o fix typos o remove a redundant check for verbose | |||
2003-04-25 | check asprintf return value for error, as the pointer is not guaranteed | Peter Valchev | |
to be NULL in such case; ok millert | |||
2003-02-12 | Add support for rotating files at a specific time; from FreeBSD | Todd C. Miller | |
2003-01-25 | it is 2003 now | Todd C. Miller | |
2003-01-25 | Move parsing of the monitor notification user with the rest of the | Todd C. Miller | |
optional arguments and add some sanity checking (if the M flag is specified a notification user must be specified as well). Also make the -n flag work in conjunction with -m and make verbose mode more monitor-friendly. deraadt@ OK | |||
2002-12-23 | Display offending line number in error messages. | Todd C. Miller | |
Based on a patch from Sam Smith. | |||
2002-11-27 | typo; Tor Houghton | Todd C. Miller | |
2002-11-07 | Sigh, sizes are in KB, not bytes, which made the cutoff size for | Todd C. Miller | |
rotating a file 512KB instead of 512 bytes, as was intended. Change things to deal in bytes internally and drop the cutoff to 256 bytes. | |||
2002-09-21 | When rotating files or checking the age of a file, check for both | Todd C. Miller | |
compressed and uncompressed logs but consult the flags to see which we one prefer should both exist. This keeps things from getting hosed if someone compresses or uncompresses one of the archived log files. | |||
2002-09-19 | Deal with someone specifying an empty string for the command to run | Todd C. Miller | |
and make it mean "send no signal and run no command". | |||
2002-09-19 | Fix long-standing bug. When specifying a command to run instead of sending | Todd C. Miller | |
a signal, the command was never actually run. | |||
2002-09-19 | Since isspace() considers \n to be a space we need to check for start | Todd C. Miller | |
of line == \0, not \n after stripping leading blanks. Otherwise blank lines give an error. Noticed by marc@ | |||
2002-09-17 | Allow user to restrict logs to be rotated by specifying pathnames on | Todd C. Miller | |
the command line. The default is to rotate all files in newsyslog.conf | |||
2002-09-17 | Add -F (force) flag; inspired by FreeBSD | Todd C. Miller | |
2002-09-17 | Add -a flag to specify a directory to store archived logs. Based on | Todd C. Miller | |
changes I made years ago to a private version of newsyslog but with the option renamed to match FreeBSD. Note that unlike the FreeBSD -a flag, we don't automagically create the archive dir if it doesn't exist. OK deraadt@ and todd@ | |||
2002-09-16 | o Remove "NONE" #define and check uid_t and gid_t against -1 with proper casts | Todd C. Miller | |
o Don't call chown/fchown if neither uid nor gid was specified o Fix check for symlinks in non-verbose mode o Add DPRINTF macro to simplify code in verbose mode o Print B and F flags in -v and -n modes o Add a leading tab to lines printed in -n mode for clarity | |||
2002-09-13 | Don't rotate log files < 512 bytes unless in binary mode. This | Todd C. Miller | |
prevents newsyslog from rotating a file that only contains the messages that the log file was turned over. deraadt@ OK | |||
2002-09-13 | KNF + ANSI; deraadt@ OK | Todd C. Miller | |
2002-09-12 | add missing include of limits.h | Todd C. Miller | |
2002-08-12 | Swap args to calloc(3) so they are in the correct order; art@ ok. | Aaron Campbell | |
2002-06-26 | Don't follow symbolic links for (ie. user-owned) log files by default; | Wilbern Cobb | |
closes pr #1913. ok millert@ | |||
2002-06-12 | a real pid_t cleanup. | Mike Pechkin | |
espie@ ok for make/, deraadt@ one extra eye, millert@ ok | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-11-27 | Fix uninitialized variable introduced in rev 1.40; found by lebel@ | Todd C. Miller | |
If fgets() fails, set err to a reasonable value. Otherwise we could send the signal to pid 0 which would be bad... | |||
2001-11-24 | handle NL terminated pid files correctly, OK deraadt@ | Marco S Hyman | |
2001-11-23 | greater care at reading pidfiles; millert ok | Theo de Raadt | |
2001-11-19 | kill more registers | Mike Pechkin | |
millert@ ok | |||
2001-11-16 | errno safety in SIGCHLD handler | Theo de Raadt | |
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-03-01 | Remove -t option from getopt() since it doesn't exist; mpech@prosoft.org.lv. | Aaron Campbell | |
Also rearrage options in the man page while I'm here. | |||
2001-01-12 | various small cleanups | Theo de Raadt | |
2000-06-30 | warnx?/errx? paranoia (use "%s" not a bare string unless it is a | Todd C. Miller | |
constant). These are not security holes but it is worth fixing them anyway both for robustness and so folks looking for examples in the tree are not misled into doing something potentially dangerous. Furthermore, it is a bad idea to assume that pathnames will not include '%' in them and that error routines don't return strings with '%' in them (especially in light of the possibility of locales). | |||
2000-06-14 | monitor -> monitormode because some OSes have a monitor(3) | Todd C. Miller | |
2000-06-12 | Make the flags field truly optional. | Todd C. Miller | |
2000-06-10 | Increment pl when filling in pidlist. It was just overwriting the first | Todd C. Miller | |
entry each time. Unless you have multiple pid files you don't notice which is why this slipped through the cracks. Noted by Jonathan Rozes. | |||
1999-11-11 | Add support for sending signals other than SIGHUP and optionally | Todd C. Miller | |
run a command instead of sending a signal. | |||
1999-11-09 | calloc an array of char *, not pid_t (left over from previous implementation). | Todd C. Miller | |
1999-11-09 | Avoid sending a HUP to a process multiple times. Ie: instead of one | Todd C. Miller | |
per log file, do one per pid file (but only if the pid file corresponds to a log file that was rotated). | |||
1999-11-07 | compress_log() now needs to check for noaction != 0 | Todd C. Miller | |
1999-11-07 | Don't send a HUP or compress the log files until _everything_ has been | Todd C. Miller | |
rotated. Fixes a race condition between syslogd and newsyslog whereby syslogd could be reinitializing (due to SIGHUP) while newsyslog was rotating the next log file. |