X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=189444e294fb2d83af8869b3c943504c30fba810;hb=a047e3e158d560af079bec920460711d8222317c;hp=f15a145bd3c9e0ffb5138eaaaeb956490c4af6c1;hpb=cfbbd6655346497ab28d50d2b5c34f0c5d9ce5ce;p=onak.git diff --git a/add.c b/add.c index f15a145..189444e 100644 --- a/add.c +++ b/add.c @@ -4,8 +4,6 @@ * Jonathan McDowell * * Copyright 2002 Project Purple - * - * $Id: add.c,v 1.15 2004/05/31 14:16:49 noodles Exp $ */ #include @@ -15,6 +13,7 @@ #include "armor.h" #include "cleankey.h" +#include "cleanup.h" #include "charfuncs.h" #include "getcgi.h" #include "keydb.h" @@ -65,11 +64,14 @@ int main(int argc, char *argv[]) &ctx, &packets); if (packets != NULL) { - printf("Storing %d keys.\n", - parse_keys(packets, &keys)); + count = parse_keys(packets, &keys); + logthing(LOGTHING_NOTICE, "Received %d keys.", + count); + printf("Storing %d keys.\n", count); end_html(); fclose(stdout); fclose(stderr); + catchsignals(); initdb(false); count = cleankeys(keys); @@ -77,7 +79,6 @@ int main(int argc, char *argv[]) count); count = update_keys(&keys); - printf("Got %d new keys.\n", count); logthing(LOGTHING_NOTICE, "Got %d new keys.", count); if (keys != NULL) {