X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=add.c;h=32016b5a63d8a2ce782f44e24c0c392ad441c7ff;hb=7832417cd58ad0abc5745fa4ac256c7442fd3f9a;hp=f90dd88be53a10d7e809ea7e2ecb30fe71f4a298;hpb=cd002cef518222c140de94b8817874b072b2d918;p=onak.git diff --git a/add.c b/add.c index f90dd88..32016b5 100644 --- a/add.c +++ b/add.c @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: add.c,v 1.12 2004/03/23 12:33:46 noodles Exp $ + * $Id: add.c,v 1.14 2004/05/26 21:20:05 noodles Exp $ */ #include @@ -27,11 +27,12 @@ int main(int argc, char *argv[]) { - struct openpgp_packet_list *packets = NULL; - struct openpgp_publickey *keys = NULL; - char **params = NULL; - struct buffer_ctx ctx; - int i; + struct openpgp_packet_list *packets = NULL; + struct openpgp_publickey *keys = NULL; + char **params = NULL; + struct buffer_ctx ctx; + int count = 0; + int i; memset(&ctx, 0, sizeof(ctx)); @@ -55,6 +56,7 @@ int main(int argc, char *argv[]) start_html("onak : Add"); if (ctx.buffer == NULL) { puts("Error: No keytext to add supplied."); + end_html(); } else { readconfig(NULL); initlogthing("add", config.logfile); @@ -62,10 +64,16 @@ int main(int argc, char *argv[]) &ctx, &packets); if (packets != NULL) { - parse_keys(packets, &keys); + printf("Storing %d keys.\n", + parse_keys(packets, &keys)); + end_html(); + fclose(stdout); + fclose(stderr); initdb(false); - printf("Got %d new keys.\n", - update_keys(&keys)); + count = update_keys(&keys); + printf("Got %d new keys.\n", count); + logthing(LOGTHING_NOTICE, "Got %d new keys.", + count); if (keys != NULL) { sendkeysync(keys); free_publickey(keys); @@ -74,10 +82,10 @@ int main(int argc, char *argv[]) cleanupdb(); } else { puts("No OpenPGP packets found in input."); + end_html(); } cleanuplogthing(); cleanupconfig(); } - end_html(); return (EXIT_SUCCESS); }