diff options
author | beck <> | 2023-07-07 19:37:54 +0000 |
---|---|---|
committer | beck <> | 2023-07-07 19:37:54 +0000 |
commit | 8d42940c1d19bb9bd4ce45580f18a59069225432 (patch) | |
tree | b1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/rand/randfile.c | |
parent | 1c5e77a1d6f97589e2bca622f3313c1418f9a535 (diff) | |
download | openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.gz openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.tar.bz2 openbsd-8d42940c1d19bb9bd4ce45580f18a59069225432.zip |
Unbreak the namespace build after a broken mk.conf and tool misfire had
me aliasing symbols not in the headers I was procesing.
This unbreaks the namespace build so it will pass again
ok tb@
Diffstat (limited to 'src/lib/libcrypto/rand/randfile.c')
-rw-r--r-- | src/lib/libcrypto/rand/randfile.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/rand/randfile.c b/src/lib/libcrypto/rand/randfile.c index 7384a65791..00008af755 100644 --- a/src/lib/libcrypto/rand/randfile.c +++ b/src/lib/libcrypto/rand/randfile.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: randfile.c,v 1.43 2023/07/07 12:01:32 beck Exp $ */ | 1 | /* $OpenBSD: randfile.c,v 1.44 2023/07/07 19:37:54 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -85,7 +85,6 @@ RAND_load_file(const char *file, long bytes) | |||
85 | else | 85 | else |
86 | return bytes; | 86 | return bytes; |
87 | } | 87 | } |
88 | LCRYPTO_ALIAS(RAND_load_file); | ||
89 | 88 | ||
90 | int | 89 | int |
91 | RAND_write_file(const char *file) | 90 | RAND_write_file(const char *file) |
@@ -134,7 +133,6 @@ RAND_write_file(const char *file) | |||
134 | explicit_bzero(buf, BUFSIZE); | 133 | explicit_bzero(buf, BUFSIZE); |
135 | return ret; | 134 | return ret; |
136 | } | 135 | } |
137 | LCRYPTO_ALIAS(RAND_write_file); | ||
138 | 136 | ||
139 | const char * | 137 | const char * |
140 | RAND_file_name(char * buf, size_t size) | 138 | RAND_file_name(char * buf, size_t size) |
@@ -143,4 +141,3 @@ RAND_file_name(char * buf, size_t size) | |||
143 | return (NULL); | 141 | return (NULL); |
144 | return buf; | 142 | return buf; |
145 | } | 143 | } |
146 | LCRYPTO_ALIAS(RAND_file_name); | ||