X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=keydb_db2.c;h=6a1e2e873d0eaa364a0188afe1aaf88dc95773f4;hb=a047e3e158d560af079bec920460711d8222317c;hp=80a466117cfa91f6f657318334b14885d3c01d5e;hpb=a068c078307cee7aa58469074a0e4a59b3f48718;p=onak.git diff --git a/keydb_db2.c b/keydb_db2.c index 80a4661..6a1e2e8 100644 --- a/keydb_db2.c +++ b/keydb_db2.c @@ -63,7 +63,7 @@ DB *keydb(DBT *key) * this file are called in order to allow the DB to be initialized ready * for access. */ -void initdb(void) +void initdb(bool readonly) { DB_INFO keydbinfo; int i; @@ -198,7 +198,7 @@ int fetch_key(uint64_t keyid, struct openpgp_publickey **publickey, fetchbuf.buffer = data.data; fetchbuf.offset = 0; fetchbuf.size = data.size; - read_openpgp_stream(buffer_fetchchar, &fetchbuf, &packets); + read_openpgp_stream(buffer_fetchchar, &fetchbuf, &packets, 0); parse_keys(packets, publickey); free_packet_list(packets); packets = NULL;