X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=lookup.c;h=b8242563d8b62d9b28b50631bd13cb27c785c5dc;hb=6afb1be70692774239e25ff9fb1083bedc714031;hp=33d023d9357d8a81607541a2ecdb9f7d2b8e54be;hpb=6105d01bd446c4a27638e90ff8fd539e093b3ea2;p=onak.git diff --git a/lookup.c b/lookup.c index 33d023d..b824256 100644 --- a/lookup.c +++ b/lookup.c @@ -5,17 +5,18 @@ * * Copyright 2002 Project Purple * - * $Id: lookup.c,v 1.9 2003/06/04 22:11:41 noodles Exp $ + * $Id: lookup.c,v 1.13 2004/03/23 12:33:47 noodles Exp $ */ -//#include #include #include #include #include +#include #include #include "armor.h" +#include "charfuncs.h" #include "getcgi.h" #include "keydb.h" #include "keyindex.h" @@ -29,11 +30,6 @@ #define OP_INDEX 2 #define OP_VINDEX 3 -int putnextchar(void *ctx, size_t count, unsigned char *c) -{ - return printf("%.*s", (int) count, c); -} - void find_keys(char *search, uint64_t keyid, bool ishex, bool fingerprint, bool exact, bool verbose, bool mrhkp) { @@ -150,9 +146,9 @@ int main(int argc, char *argv[]) } else if (search == NULL) { puts("Error: No key to search for supplied."); } else { - readconfig(); + readconfig(NULL); initlogthing("lookup", config.logfile); - initdb(); + initdb(true); switch (op) { case OP_GET: if (fetch_key(keyid, &publickey, false)) { @@ -160,7 +156,7 @@ int main(int argc, char *argv[]) flatten_publickey(publickey, &packets, &list_end); - armor_openpgp_stream(putnextchar, + armor_openpgp_stream(stdout_putchar, NULL, packets); puts("");