]> the.earth.li Git - onak.git/blobdiff - maxpath.c
Fix assumption that a signature on a public key is a revocation
[onak.git] / maxpath.c
index b0d2e9a9c6a716a2f4f6368ee4c1e6f1b9179911..191ce8aa3764c82ab07033e3bf7a34b88c0bd5ad 100644 (file)
--- a/maxpath.c
+++ b/maxpath.c
@@ -4,8 +4,6 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2001-2002 Project Purple.
- *
- * $Id: maxpath.c,v 1.10 2003/10/15 21:15:21 noodles Exp $
  */
 
 #include <stdio.h>
@@ -16,6 +14,7 @@
 #include "hash.h"
 #include "keydb.h"
 #include "ll.h"
+#include "log.h"
 #include "onak-conf.h"
 #include "stats.h"
 
@@ -72,13 +71,15 @@ void findmaxpath(unsigned long max)
 int main(int argc, char *argv[])
 {
        readconfig(NULL);
-       initdb();
+       initlogthing("maxpath", config.logfile);
+       initdb(true);
        inithash();
        findmaxpath(30);
        printf("--------\n");
        findmaxpath(30);
        destroyhash();
        cleanupdb();
+       cleanuplogthing();
        cleanupconfig();
        
        return EXIT_SUCCESS;