From 168d9233fd2efadcb50f76e57f960fb875383fbb Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Sat, 25 Sep 2004 09:05:04 +0000 Subject: [PATCH] Fix maxpath to initialise the logging infrastructure. maxpath wasn't initialising the logging infrastructure, so would log to stderr rather than the log file for example. Fix this. --- maxpath.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/maxpath.c b/maxpath.c index dfee16c..191ce8a 100644 --- a/maxpath.c +++ b/maxpath.c @@ -14,6 +14,7 @@ #include "hash.h" #include "keydb.h" #include "ll.h" +#include "log.h" #include "onak-conf.h" #include "stats.h" @@ -70,6 +71,7 @@ void findmaxpath(unsigned long max) int main(int argc, char *argv[]) { readconfig(NULL); + initlogthing("maxpath", config.logfile); initdb(true); inithash(); findmaxpath(30); @@ -77,6 +79,7 @@ int main(int argc, char *argv[]) findmaxpath(30); destroyhash(); cleanupdb(); + cleanuplogthing(); cleanupconfig(); return EXIT_SUCCESS; -- 2.39.2