diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-12 13:20:16 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-13 09:59:03 +0200 |
commit | b3599dbb6af7e28efae5f08ace99cc75f5e90b2f (patch) | |
tree | 186ce0f1525098cb18868274a2d32968a4e30945 /crypto/objects | |
parent | Tweak to documentation (diff) | |
download | openssl-b3599dbb6af7e28efae5f08ace99cc75f5e90b2f.tar.xz openssl-b3599dbb6af7e28efae5f08ace99cc75f5e90b2f.zip |
Rename int_*() functions to *_int()
There is a preference for suffixes to indicate that a function is internal
rather than prefixes. Note: the suffix is only required to disambiguate
internal functions and public symbols with the same name (but different
case)
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/objects')
-rw-r--r-- | crypto/objects/obj_dat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/objects/obj_dat.c b/crypto/objects/obj_dat.c index 48dbcde8cc..24e684acd4 100644 --- a/crypto/objects/obj_dat.c +++ b/crypto/objects/obj_dat.c @@ -210,7 +210,7 @@ void check_defer(int nid) obj_cleanup_defer = 1; } -void int_obj_cleanup(void) +void obj_cleanup_int(void) { if (obj_cleanup_defer) { obj_cleanup_defer = 2; |