From 701aebe9073cc0f46a1e4096644767790ca487d9 Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Sun, 29 Jul 2012 18:36:11 -0700 Subject: [PATCH] Remove dependency on onak-conf and logthing for splitkeys No need for this to pull either the overall onak config or logthing in. --- splitkeys.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/splitkeys.c b/splitkeys.c index 76aa4e4..2d3c58c 100644 --- a/splitkeys.c +++ b/splitkeys.c @@ -25,9 +25,7 @@ #include "charfuncs.h" #include "keystructs.h" -#include "log.h" #include "mem.h" -#include "onak-conf.h" #include "openpgp.h" #include "parsekey.h" @@ -51,9 +49,6 @@ int main(int argc, char *argv[]) } } - readconfig(NULL); - initlogthing("splitkeys", config.logfile); - do { read_openpgp_stream(stdin_getchar, NULL, &packets, maxkeys); @@ -83,8 +78,5 @@ int main(int argc, char *argv[]) } } while (packets != NULL); - cleanuplogthing(); - cleanupconfig(); - return 0; } -- 2.30.2