summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authortb <>2024-11-06 04:08:26 +0000
committertb <>2024-11-06 04:08:26 +0000
commitb072849c7c986a14728c5e22a693e15a215bee2e (patch)
treef22b3160c5e2a762977c4632ca80845064521a25 /src/lib/libcrypto/Makefile
parent7b667092a902e8c215a56267d368f364a46f7433 (diff)
downloadopenbsd-b072849c7c986a14728c5e22a693e15a215bee2e.tar.gz
openbsd-b072849c7c986a14728c5e22a693e15a215bee2e.tar.bz2
openbsd-b072849c7c986a14728c5e22a693e15a215bee2e.zip
Rename malloc-wrapper.c to crypto_memory.c
Apparently it's important that five trivial one-line wrappers remain in a file with the ISC license. So instead of cleaning the root directory of our favorite pigsty further by squashing all the useless legacy garbage into a single file, rename the oddly-named malloc-wrapper.c into crypto_memory.c. discussed with beck, jsing
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index ce5adf0f5a..9158a2e594 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.224 2024/11/05 11:21:15 tb Exp $ 1# $OpenBSD: Makefile,v 1.225 2024/11/06 04:08:26 tb Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -61,7 +61,7 @@ SRCS+= crypto_ex_data.c
61SRCS+= crypto_init.c 61SRCS+= crypto_init.c
62SRCS+= crypto_legacy.c 62SRCS+= crypto_legacy.c
63SRCS+= crypto_lock.c 63SRCS+= crypto_lock.c
64SRCS+= malloc-wrapper.c 64SRCS+= crypto_memory.c
65 65
66# aes/ 66# aes/
67SRCS+= aes.c 67SRCS+= aes.c