From: Jonathan McDowell <noodles@earth.li>
Date: Mon, 30 Jul 2012 01:36:11 +0000 (-0700)
Subject: Remove dependency on onak-conf and logthing for splitkeys
X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/commitdiff_plain/701aebe9073cc0f46a1e4096644767790ca487d9?hp=a35f560f0c11ee4bb8e56e112452ac292692a10b

Remove dependency on onak-conf and logthing for splitkeys

No need for this to pull either the overall onak config or logthing in.
---

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;
 }