summaryrefslogtreecommitdiffstats
path: root/ffi-macros
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-11-28 15:27:33 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-11-28 16:26:43 +0100
commitbbbc6da375d6584c7b2bcc74e838fff943f489d4 (patch)
tree0a965698c96dbc0fc8541c6adc2224935b68bc07 /ffi-macros
parentf53c77752ff04c3713c175a76a06723042e681ae (diff)
Call TPKs Certificates, update identifiers, documentation.
- Fixes #387.
Diffstat (limited to 'ffi-macros')
-rw-r--r--ffi-macros/src/rust2c.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi-macros/src/rust2c.rs b/ffi-macros/src/rust2c.rs
index cec39be2..0f06a674 100644
--- a/ffi-macros/src/rust2c.rs
+++ b/ffi-macros/src/rust2c.rs
@@ -14,7 +14,7 @@ fn ident2c(ident: &syn::Ident) -> (String, bool) {
// Special cases :(
match ident_string.as_str() {
"KeyID" => return ("pgp_keyid_t".into(), true),
- "TPKBuilder" => return ("pgp_tpk_builder_t".into(), true),
+ "CertBuilder" => return ("pgp_cert_builder_t".into(), true),
"UserID" => return ("pgp_userid_t".into(), true),
"UserIDBinding" => return ("pgp_user_id_binding_t".into(), true),
"UserIDBindingIter" =>