X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/393d83b8760584006eaefd6fc370abead228e02a..fea9736017465e211d444295f18137140faf1111:/add.c diff --git a/add.c b/add.c index 2d38624..10627f2 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" @@ -22,7 +23,6 @@ #include "merge.h" #include "onak-conf.h" #include "parsekey.h" -#include "sendsync.h" int main(int argc, char *argv[]) { @@ -70,21 +70,22 @@ int main(int argc, char *argv[]) end_html(); fclose(stdout); fclose(stderr); + catchsignals(); initdb(false); count = cleankeys(keys); logthing(LOGTHING_INFO, "%d keys cleaned.", count); - count = update_keys(&keys); - printf("Got %d new keys.\n", count); + count = update_keys(&keys, true); logthing(LOGTHING_NOTICE, "Got %d new keys.", count); + if (keys != NULL) { - sendkeysync(keys); free_publickey(keys); keys = NULL; } + cleanupdb(); } else { puts("No OpenPGP packets found in input.");