diff options
author | Dmitry Belyavskiy <beldmit@gmail.com> | 2025-01-14 21:19:59 +0100 |
---|---|---|
committer | Dmitry Belyavskiy <beldmit@gmail.com> | 2025-01-17 15:04:35 +0100 |
commit | 116c0ad9520b0dff42b4683b704aa8264d8d3331 (patch) | |
tree | 64c82f027a45543b77cd808f63833fa3de9e7161 | |
parent | provider_deactivate(): Check return value of CRYPTO_atomic_add() (diff) | |
download | openssl-116c0ad9520b0dff42b4683b704aa8264d8d3331.tar.xz openssl-116c0ad9520b0dff42b4683b704aa8264d8d3331.zip |
`atoi` should be allowed
When we compile with -O0 for Linux, the command
`./util/checkplatformsyms.pl ./util/platform_symbols/unix-symbols.txt ./libcrypto.so ./libssl.so`
complains to the lack of `atoi`
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Neil Horman <nhorman@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26417)
-rw-r--r-- | util/platform_symbols/unix-symbols.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/platform_symbols/unix-symbols.txt b/util/platform_symbols/unix-symbols.txt index f37ec3e9a7..4b3d0f00c2 100644 --- a/util/platform_symbols/unix-symbols.txt +++ b/util/platform_symbols/unix-symbols.txt @@ -1,6 +1,7 @@ abort accept aligned_alloc +atoi bcmp bind calloc |