X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=2a99036adbe2fe017359f00962a027b8a9127fce;hb=3b5b9db0bc2dbe93b3b79e722997606c71ecafb9;hp=b0a7fd227c90f1853612aa08cb1b0d4a3c8d0fb5;hpb=62c94dacbe471278972813b59776a5fadbd8a543;p=onak.git diff --git a/add.c b/add.c index b0a7fd2..2a99036 100644 --- a/add.c +++ b/add.c @@ -16,6 +16,7 @@ #include "getcgi.h" #include "keydb.h" #include "keystructs.h" +#include "log.h" #include "mem.h" #include "merge.h" #include "onak-conf.h" @@ -53,25 +54,27 @@ int main(int argc, char *argv[]) if (ctx.buffer == NULL) { puts("Error: No keytext to add supplied."); } else { + readconfig(); + initlogthing("add", config.logfile); dearmor_openpgp_stream(buffer_fetchchar, &ctx, &packets); if (packets != NULL) { parse_keys(packets, &keys); - readconfig(); initdb(); printf("Got %d new keys.\n", - update_keys(&keys, false)); + update_keys(&keys)); if (keys != NULL) { sendkeysync(keys); free_publickey(keys); keys = NULL; } cleanupdb(); - cleanupconfig(); } else { puts("No OpenPGP packets found in input."); } + cleanuplogthing(); + cleanupconfig(); } end_html(); return (EXIT_SUCCESS);