Remove pubkey_algo from alpm_pgpkey_t

This field is no longer used and requires updating with gpgme changes.

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2024-12-07 22:12:42 +10:00
parent 95a7d416ce
commit 775db50538

View file

@ -451,14 +451,6 @@ typedef struct _alpm_pgpkey_t {
unsigned int length; unsigned int length;
/** has the key been revoked */ /** has the key been revoked */
unsigned int revoked; unsigned int revoked;
/** A character representing the encryption algorithm used by the public key
*
* ? = unknown
* R = RSA
* D = DSA
* E = EDDSA
*/
char pubkey_algo;
} alpm_pgpkey_t; } alpm_pgpkey_t;
/** /**