From 775db50538bae5402372df18096bbf494271f369 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 7 Dec 2024 22:12:42 +1000 Subject: [PATCH] Remove pubkey_algo from alpm_pgpkey_t This field is no longer used and requires updating with gpgme changes. Signed-off-by: Allan McRae --- lib/libalpm/alpm.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 8fa4076f..7f7cf531 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -451,14 +451,6 @@ typedef struct _alpm_pgpkey_t { unsigned int length; /** has the key been 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; /**