diff options
author | jmc <> | 2022-12-26 07:18:53 +0000 |
---|---|---|
committer | jmc <> | 2022-12-26 07:18:53 +0000 |
commit | 8144b51086b3c46594192ccbec62762e58d61200 (patch) | |
tree | 26f3d93398833b7449b8a97e9fe4af9904382dbf /src/lib/libcrypto/crypto.h | |
parent | 54da696f897367a85e20e97a53d29b18b44cf8b7 (diff) | |
download | openbsd-8144b51086b3c46594192ccbec62762e58d61200.tar.gz openbsd-8144b51086b3c46594192ccbec62762e58d61200.tar.bz2 openbsd-8144b51086b3c46594192ccbec62762e58d61200.zip |
spelling fixes; from paul tagliamonte
i removed the arithmetics -> arithmetic changes, as i felt they
were not clearly correct
ok tb
Diffstat (limited to 'src/lib/libcrypto/crypto.h')
-rw-r--r-- | src/lib/libcrypto/crypto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/crypto.h b/src/lib/libcrypto/crypto.h index 3b00f039fa..066f6246f6 100644 --- a/src/lib/libcrypto/crypto.h +++ b/src/lib/libcrypto/crypto.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crypto.h,v 1.57 2022/09/11 17:26:51 tb Exp $ */ | 1 | /* $OpenBSD: crypto.h,v 1.58 2022/12/26 07:18:50 jmc Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -248,8 +248,8 @@ DECLARE_STACK_OF(void) | |||
248 | * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */ | 248 | * The current classes are SSL_CTX, SSL, SSL_SESSION, and a few more */ |
249 | 249 | ||
250 | typedef struct crypto_ex_data_func_st { | 250 | typedef struct crypto_ex_data_func_st { |
251 | long argl; /* Arbitary long */ | 251 | long argl; /* Arbitrary long */ |
252 | void *argp; /* Arbitary void * */ | 252 | void *argp; /* Arbitrary void * */ |
253 | CRYPTO_EX_new *new_func; | 253 | CRYPTO_EX_new *new_func; |
254 | CRYPTO_EX_free *free_func; | 254 | CRYPTO_EX_free *free_func; |
255 | CRYPTO_EX_dup *dup_func; | 255 | CRYPTO_EX_dup *dup_func; |
@@ -540,7 +540,7 @@ void ERR_load_CRYPTO_strings(void); | |||
540 | #define _OPENSSL_INIT_FLAG_NOOP 0x80000000L | 540 | #define _OPENSSL_INIT_FLAG_NOOP 0x80000000L |
541 | 541 | ||
542 | /* | 542 | /* |
543 | * These are provided for compatibiliy, but have no effect | 543 | * These are provided for compatibility, but have no effect |
544 | * on how LibreSSL is initialized. | 544 | * on how LibreSSL is initialized. |
545 | */ | 545 | */ |
546 | #define OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS _OPENSSL_INIT_FLAG_NOOP | 546 | #define OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS _OPENSSL_INIT_FLAG_NOOP |