From 800f310dd3f2fcbf3852a42c67b5dd37e4ef4415 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Wed, 10 Sep 2014 09:01:20 +0200 Subject: trust: Use term 'attached extensions' instead of 'stapled' The term 'stapled extensions' is confusing because it overloads terminology used with OSCP stapling. Suggested by Daniel Kahn Gillmor. --- trust/extract-openssl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'trust/extract-openssl.c') diff --git a/trust/extract-openssl.c b/trust/extract-openssl.c index 912c90d..d622d7a 100644 --- a/trust/extract-openssl.c +++ b/trust/extract-openssl.c @@ -110,8 +110,8 @@ load_usage_ext (p11_enumerate *ex, node_asn *ext = NULL; size_t length; - if (ex->stapled) - ext = p11_dict_get (ex->stapled, ext_oid); + if (ex->attached) + ext = p11_dict_get (ex->attached, ext_oid); if (ext == NULL) { *oids = NULL; return true; @@ -230,8 +230,8 @@ write_keyid (p11_enumerate *ex, size_t length = 0; int ret; - if (ex->stapled) - ext = p11_dict_get (ex->stapled, P11_OID_SUBJECT_KEY_IDENTIFIER); + if (ex->attached) + ext = p11_dict_get (ex->attached, P11_OID_SUBJECT_KEY_IDENTIFIER); if (ext != NULL) { value = p11_asn1_read (ext, "extnValue", &length); return_val_if_fail (value != NULL, false); -- cgit v1.1