diff options
author | tb <> | 2023-08-04 05:44:51 +0000 |
---|---|---|
committer | tb <> | 2023-08-04 05:44:51 +0000 |
commit | 25d8742569e3cd1e85f0ad1486c1be86cc2e377b (patch) | |
tree | 793d430b90d41f03aff8376bbe6dbd50300f855c | |
parent | 73f258f9ba46bd23fdea7bf744a0a7d49f0b087c (diff) | |
download | openbsd-25d8742569e3cd1e85f0ad1486c1be86cc2e377b.tar.gz openbsd-25d8742569e3cd1e85f0ad1486c1be86cc2e377b.tar.bz2 openbsd-25d8742569e3cd1e85f0ad1486c1be86cc2e377b.zip |
Move the ENGINE_new() prototype a line down
-rw-r--r-- | src/lib/libcrypto/engine/engine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/engine/engine.h b/src/lib/libcrypto/engine/engine.h index ef5878a5d3..1e04b61e57 100644 --- a/src/lib/libcrypto/engine/engine.h +++ b/src/lib/libcrypto/engine/engine.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: engine.h,v 1.41 2023/07/28 09:22:26 tb Exp $ */ | 1 | /* $OpenBSD: engine.h,v 1.42 2023/08/04 05:44:51 tb Exp $ */ |
2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL | 2 | /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -246,8 +246,8 @@ void ENGINE_load_openssl(void); | |||
246 | int ENGINE_register_all_complete(void); | 246 | int ENGINE_register_all_complete(void); |
247 | 247 | ||
248 | void ENGINE_cleanup(void); | 248 | void ENGINE_cleanup(void); |
249 | ENGINE *ENGINE_new(void); | ||
250 | 249 | ||
250 | ENGINE *ENGINE_new(void); | ||
251 | int ENGINE_free(ENGINE *engine); | 251 | int ENGINE_free(ENGINE *engine); |
252 | int ENGINE_init(ENGINE *engine); | 252 | int ENGINE_init(ENGINE *engine); |
253 | int ENGINE_finish(ENGINE *engine); | 253 | int ENGINE_finish(ENGINE *engine); |