diff options
| author | jsing <> | 2022-08-29 06:49:24 +0000 |
|---|---|---|
| committer | jsing <> | 2022-08-29 06:49:24 +0000 |
| commit | c8a324eda35cb6ee505bf0ec7b8f74a58a2c2a01 (patch) | |
| tree | 71905b2a11cb11c5a938be84e89e67d1d6b4509c /src/lib/libcrypto/err/err.c | |
| parent | 7597b22fcc2f351d94675f5d378d770c786c3155 (diff) | |
| download | openbsd-c8a324eda35cb6ee505bf0ec7b8f74a58a2c2a01.tar.gz openbsd-c8a324eda35cb6ee505bf0ec7b8f74a58a2c2a01.tar.bz2 openbsd-c8a324eda35cb6ee505bf0ec7b8f74a58a2c2a01.zip | |
Provide ERR_R_INIT_FAIL.
Needed for an upcoming change.
ok tb@
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libcrypto/err/err.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/err/err.c b/src/lib/libcrypto/err/err.c index f05567e173..349140543b 100644 --- a/src/lib/libcrypto/err/err.c +++ b/src/lib/libcrypto/err/err.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: err.c,v 1.48 2019/10/17 14:28:53 jsing Exp $ */ | 1 | /* $OpenBSD: err.c,v 1.49 2022/08/29 06:49:24 jsing 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 | * |
| @@ -215,6 +215,7 @@ static ERR_STRING_DATA ERR_str_reasons[] = { | |||
| 215 | {ERR_R_PASSED_NULL_PARAMETER, "passed a null parameter"}, | 215 | {ERR_R_PASSED_NULL_PARAMETER, "passed a null parameter"}, |
| 216 | {ERR_R_INTERNAL_ERROR, "internal error"}, | 216 | {ERR_R_INTERNAL_ERROR, "internal error"}, |
| 217 | {ERR_R_DISABLED , "called a function that was disabled at compile-time"}, | 217 | {ERR_R_DISABLED , "called a function that was disabled at compile-time"}, |
| 218 | {ERR_R_INIT_FAIL, "initialization failure"}, | ||
| 218 | 219 | ||
| 219 | {0, NULL}, | 220 | {0, NULL}, |
| 220 | }; | 221 | }; |
