X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/4aafe74aea2d616a5d9611c6e3c01a182a0b37ec..501b09dd94d46430a2463ac5fba7608b0be59005:/gpgwww.c diff --git a/gpgwww.c b/gpgwww.c index 75022b8..cd1c100 100644 --- a/gpgwww.c +++ b/gpgwww.c @@ -14,6 +14,7 @@ #include "getcgi.h" #include "hash.h" #include "keydb.h" +#include "log.h" #include "onak-conf.h" #include "stats.h" @@ -53,16 +54,30 @@ int main(int argc, char *argv[]) exit(1); } - printf("

Looking for path from 0x%llX to 0x%llX

\n", from, to); + printf("

Looking for path from 0x%llX to 0x%llX.\n", from, to); + printf("" + "Find reverse path

\n", + to, + from); + + readconfig(); + initlogthing("gpgwww", config.logfile); initdb(); inithash(); - dofindpath(from, to, true); + dofindpath(from, to, true, 3); destroyhash(); cleanupdb(); + cleanuplogthing(); + cleanupconfig(); puts("
"); - puts("Produced by gpgwww " VERSION ", part of onak. Jonathan McDowell"); + puts("Produced by gpgwww " VERSION ", part of onak. " + "" + "Jonathan McDowell"); end_html(); + cleanupcgi(cgiparams); + cgiparams = NULL; + return EXIT_SUCCESS; }