summaryrefslogtreecommitdiffstats
path: root/crypto/property/property_local.h
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-06-04 13:19:23 +1000
committerPauli <pauli@openssl.org>2021-06-05 20:39:26 +1000
commitfa95fc1eb5eb7e84523f09248c0ce7f771cfdf58 (patch)
tree1d047e1c3fc25aee11a56d1412e8d2582386be03 /crypto/property/property_local.h
parent6a5f97a671de6d4d9f0cd6f6fc23ad89ca4ad69f (diff)
Rename `n` field to `num_properties` in property definition structure.
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15614)
Diffstat (limited to 'crypto/property/property_local.h')
-rw-r--r--crypto/property/property_local.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/property/property_local.h b/crypto/property/property_local.h
index db1b0a5ee4..5bb48a6f37 100644
--- a/crypto/property/property_local.h
+++ b/crypto/property/property_local.h
@@ -29,7 +29,7 @@ struct ossl_property_definition_st {
};
struct ossl_property_list_st {
- int n;
+ int num_properties;
unsigned int has_optional : 1;
OSSL_PROPERTY_DEFINITION properties[1];
};