* Jonathan McDowell <noodles@earth.li>
*
* Copyright 2002 Project Purple
+ *
+ * $Id: add.c,v 1.10 2003/06/04 20:57:06 noodles Exp $
*/
#include <errno.h>
#include "getcgi.h"
#include "keydb.h"
#include "keystructs.h"
+#include "log.h"
#include "mem.h"
#include "merge.h"
#include "onak-conf.h"
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);
} else {
puts("No OpenPGP packets found in input.");
}
+ cleanuplogthing();
+ cleanupconfig();
}
end_html();
return (EXIT_SUCCESS);