cscvs to tla changeset 112
[onak.git] / add.c
diff --git a/add.c b/add.c
index 80afaddf5ba352615af93f22f7978e54d77214ac..2aee761884fe6ae786cc2f9f20a76fc91f3fe27f 100644 (file)
--- a/add.c
+++ b/add.c
@@ -4,6 +4,8 @@
  * Jonathan McDowell <noodles@earth.li>
  *
  * Copyright 2002 Project Purple
+ *
+ * $Id: add.c,v 1.11 2003/10/15 21:15:20 noodles Exp $
  */
 
 #include <errno.h>
 #include "getcgi.h"
 #include "keydb.h"
 #include "keystructs.h"
-#include "parsekey.h"
+#include "log.h"
+#include "mem.h"
 #include "merge.h"
+#include "onak-conf.h"
+#include "parsekey.h"
+#include "sendsync.h"
 
 int main(int argc, char *argv[])
 {
@@ -50,6 +56,8 @@ int main(int argc, char *argv[])
        if (ctx.buffer == NULL) {
                puts("Error: No keytext to add supplied.");
        } else {
+               readconfig(NULL);
+               initlogthing("add", config.logfile);
                dearmor_openpgp_stream(buffer_fetchchar,
                                        &ctx,
                                        &packets);
@@ -57,11 +65,18 @@ int main(int argc, char *argv[])
                        parse_keys(packets, &keys);
                        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);