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/sm3/sm3.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/sm3/sm3.c')
-rw-r--r-- | src/lib/libcrypto/sm3/sm3.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/sm3/sm3.c b/src/lib/libcrypto/sm3/sm3.c index 039a92201b..df4a4e8229 100644 --- a/src/lib/libcrypto/sm3/sm3.c +++ b/src/lib/libcrypto/sm3/sm3.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sm3.c,v 1.3 2023/07/07 12:01:32 beck Exp $ */ | 1 | /* $OpenBSD: sm3.c,v 1.4 2023/07/07 19:37:54 beck Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018, Ribose Inc | 3 | * Copyright (c) 2018, Ribose Inc |
4 | * | 4 | * |
@@ -35,7 +35,6 @@ SM3_Init(SM3_CTX *c) | |||
35 | c->H = SM3_H; | 35 | c->H = SM3_H; |
36 | return 1; | 36 | return 1; |
37 | } | 37 | } |
38 | LCRYPTO_ALIAS(SM3_Init); | ||
39 | 38 | ||
40 | void | 39 | void |
41 | SM3_block_data_order(SM3_CTX *ctx, const void *p, size_t num) | 40 | SM3_block_data_order(SM3_CTX *ctx, const void *p, size_t num) |