diff options
Diffstat (limited to 'isisd')
-rw-r--r-- | isisd/ChangeLog | 4 | ||||
-rw-r--r-- | isisd/isis_main.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/isisd/ChangeLog b/isisd/ChangeLog index e241d54d..32905516 100644 --- a/isisd/ChangeLog +++ b/isisd/ChangeLog @@ -1,3 +1,7 @@ +2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + + * isis_main.c: (main) The 2nd argument to openzlog has been removed. + 2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu> * isis_main.c: (sigint,sigterm) Use zlog_notice for termination message. diff --git a/isisd/isis_main.c b/isisd/isis_main.c index 9aa487a7..027e47b4 100644 --- a/isisd/isis_main.c +++ b/isisd/isis_main.c @@ -218,7 +218,7 @@ main (int argc, char **argv, char **envp) /* Get the programname without the preceding path. */ progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]); - zlog_default = openzlog (progname, ZLOG_NOLOG, ZLOG_ISIS, + zlog_default = openzlog (progname, ZLOG_ISIS, LOG_CONS | LOG_NDELAY | LOG_PID, LOG_DAEMON); /* for reload */ |