X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=167e5bd46aa13a0380fcd8e288eecce19f2cb478;hb=0b5448fe699b652d965060467c595430c0a60137;hp=a784fac358fb4d9565c84dfb274734b2c61d89df;hpb=394938c479925750ffe56c28d281945ba4003a14;p=onak.git diff --git a/add.c b/add.c index a784fac..167e5bd 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[]) { @@ -63,26 +63,34 @@ 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); + if (stdout != NULL && fileno(stdout) != -1) { + fclose(stdout); + } + if (stderr != NULL && stderr != stdout && + fileno(stderr) != -1) { + 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.");