X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=keydb_keyring.c;h=0b865b57efb6554c7489b87b08fac03061869b16;hb=a8c0920cce727a12697154a85896f2a3ba47eb75;hp=62371aedce9a6e9918127acaecd72fff361485b9;hpb=4baef3532b82bcaaa1aecc376b7e63e8a20d8bf7;p=onak.git diff --git a/keydb_keyring.c b/keydb_keyring.c index 62371ae..0b865b5 100644 --- a/keydb_keyring.c +++ b/keydb_keyring.c @@ -161,13 +161,13 @@ static int keyring_store_key(struct onak_dbctx *dbctx, /** * delete_key - Given a keyid delete the key from storage. - * @keyid: The keyid to delete. + * @fp: The fingerprint of the key to delete. * @intrans: If we're already in a transaction. * * We don't support removing keys from a keyring file. */ static int keyring_delete_key(struct onak_dbctx *dbctx, - uint64_t keyid, bool intrans) + struct openpgp_fingerprint *fp, bool intrans) { return 1; } @@ -232,7 +232,6 @@ static int keyring_update_keys(struct onak_dbctx *dbctx, */ #define NEED_KEYID2UID 1 #define NEED_GETKEYSIGS 1 -#define NEED_GETFULLKEYID 1 #define NEED_GET_FP 1 #include "keydb.c" @@ -254,7 +253,7 @@ static int keyring_parse_keys(struct onak_keyring_dbctx *privctx) * Walk the keyring file, noting the start of each public key and the * total length of packets associated with it. */ - pos = start = totlen = 0; + len = pos = start = totlen = 0; while (((privctx->length - pos) > 5) && (privctx->file[pos] & 0x80)) { if (privctx->file[pos] & 0x40) { tag = privctx->file[pos] & 0x3F; @@ -448,7 +447,6 @@ struct onak_dbctx *keydb_keyring_init(struct onak_db_config *dbcfg, dbctx->getkeysigs = generic_getkeysigs; dbctx->cached_getkeysigs = generic_cached_getkeysigs; dbctx->keyid2uid = generic_keyid2uid; - dbctx->getfullkeyid = generic_getfullkeyid; dbctx->iterate_keys = keyring_iterate_keys; return dbctx;