* Jonathan McDowell <noodles@earth.li>
*
* Copyright 2001-2002 Project Purple.
- *
- * $Id: maxpath.c,v 1.9 2003/06/04 20:57:10 noodles Exp $
*/
#include <stdio.h>
#include "hash.h"
#include "keydb.h"
#include "ll.h"
+#include "log.h"
#include "onak-conf.h"
#include "stats.h"
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;