*
* Copyright 2002 Project Purple
*
- * $Id: add.c,v 1.13 2004/05/26 18:53:14 noodles Exp $
+ * $Id: add.c,v 1.14 2004/05/26 21:20:05 noodles Exp $
*/
#include <errno.h>
start_html("onak : Add");
if (ctx.buffer == NULL) {
puts("Error: No keytext to add supplied.");
+ end_html();
} else {
readconfig(NULL);
initlogthing("add", config.logfile);
&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);
count = update_keys(&keys);
printf("Got %d new keys.\n", count);
cleanupdb();
} else {
puts("No OpenPGP packets found in input.");
+ end_html();
}
cleanuplogthing();
cleanupconfig();
}
- end_html();
return (EXIT_SUCCESS);
}