cscvs to tla changeset 58
[onak.git] / add.c
diff --git a/add.c b/add.c
index bb12e059beb861d69afde4beea10ee4a65b3b715..2a99036adbe2fe017359f00962a027b8a9127fce 100644 (file)
--- a/add.c
+++ b/add.c
 #include "getcgi.h"
 #include "keydb.h"
 #include "keystructs.h"
+#include "log.h"
+#include "mem.h"
+#include "merge.h"
 #include "onak-conf.h"
 #include "parsekey.h"
-#include "merge.h"
+#include "sendsync.h"
 
 int main(int argc, char *argv[])
 {
@@ -51,19 +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();
                } else {
                        puts("No OpenPGP packets found in input.");
                }
+               cleanuplogthing();
+               cleanupconfig();
        }
        end_html();
        return (EXIT_SUCCESS);