summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openpgp-ffi/include/sequoia/openpgp.h2
-rw-r--r--openpgp-ffi/include/sequoia/openpgp/types.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/openpgp-ffi/include/sequoia/openpgp.h b/openpgp-ffi/include/sequoia/openpgp.h
index 66edd45d..79e70602 100644
--- a/openpgp-ffi/include/sequoia/openpgp.h
+++ b/openpgp-ffi/include/sequoia/openpgp.h
@@ -910,7 +910,7 @@ pgp_keyid_t pgp_key_keyid (pgp_key_t p);
/*/
/// Returns the key's public key algorithm.
/*/
-sq_public_key_algo_t pgp_key_public_key_algo(pgp_key_t key);
+pgp_public_key_algo_t pgp_key_public_key_algo(pgp_key_t key);
/*/
/// Returns the public key's size in bits.
diff --git a/openpgp-ffi/include/sequoia/openpgp/types.h b/openpgp-ffi/include/sequoia/openpgp/types.h
index 8631155f..cf42c771 100644
--- a/openpgp-ffi/include/sequoia/openpgp/types.h
+++ b/openpgp-ffi/include/sequoia/openpgp/types.h
@@ -177,7 +177,7 @@ typedef enum pgp_public_key_algorithm {
/* Dummy value to make sure the enumeration has a defined size. Do
not use this value. */
PGP_PUBLIC_KEY_ALGO_FORCE_WIDTH = INT_MAX,
-} sq_public_key_algo_t;
+} pgp_public_key_algo_t;
/*/
/// The OpenPGP packet tags as defined in [Section 4.3 of RFC 4880].