diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | utils/statd/log.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-02-17 Patrick J. LoPresti <patl@curl.com> + + * utils/statd/log.c (log_init): Use LOG_DAEMON instead of + LOG_LOCAL5. + 2001-02-14 H.J. Lu <hjl@lucon.org> * utils/statd/rmtcall.c: Include <time.h>. diff --git a/utils/statd/log.c b/utils/statd/log.c index 91e608a..104dee9 100644 --- a/utils/statd/log.c +++ b/utils/statd/log.c @@ -32,7 +32,7 @@ static int opt_debug = 0; /* Will be command-line option, eventually */ void log_init() { if (!(run_mode & MODE_LOG_STDERR)) - openlog(name_p, LOG_PID, LOG_LOCAL5); + openlog(name_p, LOG_PID, LOG_DAEMON); mypid = getpid(); |