X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/e3ee7975fc8f8b343390272663b8c644030b17c1..7e81c28455626dda2519fec5b976fd41bedad872:/maxpath.c diff --git a/maxpath.c b/maxpath.c index 2f813de..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" @@ -69,14 +70,16 @@ void findmaxpath(unsigned long max) int main(int argc, char *argv[]) { - readconfig(); - initdb(); + readconfig(NULL); + initlogthing("maxpath", config.logfile); + initdb(true); inithash(); findmaxpath(30); printf("--------\n"); findmaxpath(30); destroyhash(); cleanupdb(); + cleanuplogthing(); cleanupconfig(); return EXIT_SUCCESS;