diff options
author | Rich Salz <rsalz@openssl.org> | 2016-05-20 16:46:29 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-05-20 16:48:29 +0200 |
commit | 739a1eb1961cdc3b1597a040766f3cb359d095f6 (patch) | |
tree | da90e8dd33e1aa605351b529713901bb1b0f37b8 /crypto/conf | |
parent | Clean up the VMS hacks in crypto/rand/randfile.c (diff) | |
download | openssl-739a1eb1961cdc3b1597a040766f3cb359d095f6.tar.xz openssl-739a1eb1961cdc3b1597a040766f3cb359d095f6.zip |
Rename lh_xxx,sk_xxx tp OPENSSL_{LH,SK}_xxx
Rename sk_xxx to OPENSSL_sk_xxx and _STACK to OPENSSL_STACK
Rename lh_xxx API to OPENSSL_LH_xxx and LHASH_NODE to OPENSSL_LH_NODE
Make lhash stuff opaque.
Use typedefs for function pointers; makes the code simpler.
Remove CHECKED_xxx macros.
Add documentation; remove old X509-oriented doc.
Add API-compat names for entire old API
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
Diffstat (limited to 'crypto/conf')
-rw-r--r-- | crypto/conf/conf_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/conf/conf_api.c b/crypto/conf/conf_api.c index 0d4b23f681..5535416ab3 100644 --- a/crypto/conf/conf_api.c +++ b/crypto/conf/conf_api.c @@ -100,7 +100,7 @@ char *_CONF_get_string(const CONF *conf, const char *section, static unsigned long conf_value_hash(const CONF_VALUE *v) { - return (lh_strhash(v->section) << 2) ^ lh_strhash(v->name); + return (OPENSSL_LH_strhash(v->section) << 2) ^ OPENSSL_LH_strhash(v->name); } static int conf_value_cmp(const CONF_VALUE *a, const CONF_VALUE *b) |