X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=189444e294fb2d83af8869b3c943504c30fba810;hb=a047e3e158d560af079bec920460711d8222317c;hp=a784fac358fb4d9565c84dfb274734b2c61d89df;hpb=394938c479925750ffe56c28d281945ba4003a14;p=onak.git diff --git a/add.c b/add.c index a784fac..189444e 100644 --- a/add.c +++ b/add.c @@ -13,6 +13,7 @@ #include "armor.h" #include "cleankey.h" +#include "cleanup.h" #include "charfuncs.h" #include "getcgi.h" #include "keydb.h" @@ -63,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); @@ -75,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) {