X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=2aee761884fe6ae786cc2f9f20a76fc91f3fe27f;hb=6938a097fb6c1cda197b18f868808c860e832bb9;hp=f65203c3a06b906486686e8c131f8a2f093aeade;hpb=556f51f104fbbb5bd0d51b61a18d7e5af2759079;p=onak.git diff --git a/add.c b/add.c index f65203c..2aee761 100644 --- a/add.c +++ b/add.c @@ -4,6 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: add.c,v 1.11 2003/10/15 21:15:20 noodles Exp $ */ #include @@ -16,6 +18,7 @@ #include "getcgi.h" #include "keydb.h" #include "keystructs.h" +#include "log.h" #include "mem.h" #include "merge.h" #include "onak-conf.h" @@ -53,15 +56,16 @@ 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); 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); @@ -71,6 +75,8 @@ int main(int argc, char *argv[]) } else { puts("No OpenPGP packets found in input."); } + cleanuplogthing(); + cleanupconfig(); } end_html(); return (EXIT_SUCCESS);