diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-05 11:21:16 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-11-05 11:21:16 +0000 |
commit | 764e59eaae8d4de50c65a0de9607b948d69221f2 (patch) | |
tree | 077ff93a431a07ef9208bcc299c8aa56cc0ed9c7 /lib | |
parent | 3abf8382292616f0e9f1c6bb536c4bb730eefc15 (diff) |
Rename cpt_err.c into crypto_err.c
It is a bit sad, because cpt is such an apt abbreviation for crypto that
everybody immediately understands.
discussed with jsing
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/Makefile | 4 | ||||
-rw-r--r-- | lib/libcrypto/crypto_err.c (renamed from lib/libcrypto/cpt_err.c) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile index abfdb1b0e0e..ce5adf0f5a2 100644 --- a/lib/libcrypto/Makefile +++ b/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.223 2024/11/05 11:14:04 tb Exp $ +# $OpenBSD: Makefile,v 1.224 2024/11/05 11:21:15 tb Exp $ LIB= crypto LIBREBUILD=y @@ -56,7 +56,7 @@ VERSION_SCRIPT= Symbols.map SYMBOL_LIST= ${.CURDIR}/Symbols.list # crypto/ -SRCS+= cpt_err.c +SRCS+= crypto_err.c SRCS+= crypto_ex_data.c SRCS+= crypto_init.c SRCS+= crypto_legacy.c diff --git a/lib/libcrypto/cpt_err.c b/lib/libcrypto/crypto_err.c index 459b99d433c..08fb0ea16d6 100644 --- a/lib/libcrypto/cpt_err.c +++ b/lib/libcrypto/crypto_err.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpt_err.c,v 1.16 2024/06/24 06:43:22 tb Exp $ */ +/* $OpenBSD: crypto_err.c,v 1.1 2024/11/05 11:21:15 tb Exp $ */ /* ==================================================================== * Copyright (c) 1999-2011 The OpenSSL Project. All rights reserved. * |