summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2019-03-11 09:54:23 +0100
committerNeal H. Walfield <neal@pep.foundation>2019-03-11 09:54:23 +0100
commit7732d7ec9b43b1ee0afa73777edf8bf44a4c227a (patch)
tree2baf98f15bc0a967eba1c8800be356a7a0ba45a6
parent220d1ab8ffe3c3bbec99c6143a9f480df4955e5b (diff)
openpgp-ffi: Finish sq_ to pgp_ rename.
-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].