cscvs to tla changeset 103
authorJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:48:01 +0000 (23:48 +0000)
committerJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:48:01 +0000 (23:48 +0000)
Author: noodles
Date: 2003/10/03 23:03:02
Enable logging framework in splitkeys.

splitkeys.c

index a2daac673bbe1a6c2f13dc751deed7dc68921b35..6cdf0a0abb1feb418400e5914cd0d014964833b6 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * Copyright 2003 Project Purple
  *
- * $Id: splitkeys.c,v 1.1 2003/09/30 21:16:14 noodles Exp $
+ * $Id: splitkeys.c,v 1.2 2003/10/03 23:03:02 noodles Exp $
  */
 
 #include <fcntl.h>
@@ -16,7 +16,9 @@
 
 #include "charfuncs.h"
 #include "keystructs.h"
+#include "log.h"
 #include "mem.h"
+#include "onak-conf.h"
 #include "parsekey.h"
 
 int main(int argc, char *argv[])
@@ -36,10 +38,13 @@ int main(int argc, char *argv[])
                        fprintf(stderr,
                                "Couldn't parse %s as a number of keys!\n",
                                argv[1]);
-                       exit(1);
+                       exit(EXIT_FAILURE);
                }
        }
 
+       readconfig();
+       initlogthing("splitkeys", config.logfile);
+
        do {
                result = read_openpgp_stream(stdin_getchar, NULL,
                                 &packets, maxkeys);
@@ -65,5 +70,8 @@ int main(int argc, char *argv[])
                }
        } while (packets != NULL);
 
+       cleanuplogthing();
+       cleanupconfig();
+
        return 0;
 }