diff options
author | jsing <> | 2022-08-29 06:49:24 +0000 |
---|---|---|
committer | jsing <> | 2022-08-29 06:49:24 +0000 |
commit | bdf36f0b35ba06ef02f6e2684939f2d89a262241 (patch) | |
tree | 71905b2a11cb11c5a938be84e89e67d1d6b4509c /src/lib/libcrypto/err/err.h | |
parent | c0e544bfa9e294b6b70bc730202bba012157b47f (diff) | |
download | openbsd-bdf36f0b35ba06ef02f6e2684939f2d89a262241.tar.gz openbsd-bdf36f0b35ba06ef02f6e2684939f2d89a262241.tar.bz2 openbsd-bdf36f0b35ba06ef02f6e2684939f2d89a262241.zip |
Provide ERR_R_INIT_FAIL.
Needed for an upcoming change.
ok tb@
Diffstat (limited to 'src/lib/libcrypto/err/err.h')
-rw-r--r-- | src/lib/libcrypto/err/err.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/err/err.h b/src/lib/libcrypto/err/err.h index f792a6db23..24708c5b1a 100644 --- a/src/lib/libcrypto/err/err.h +++ b/src/lib/libcrypto/err/err.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err.h,v 1.27 2022/05/05 08:48:05 tb Exp $ */ | 1 | /* $OpenBSD: err.h,v 1.28 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 | * |
@@ -346,11 +346,11 @@ typedef struct err_state_st { | |||
346 | #define ERR_R_PASSED_NULL_PARAMETER (3|ERR_R_FATAL) | 346 | #define ERR_R_PASSED_NULL_PARAMETER (3|ERR_R_FATAL) |
347 | #define ERR_R_INTERNAL_ERROR (4|ERR_R_FATAL) | 347 | #define ERR_R_INTERNAL_ERROR (4|ERR_R_FATAL) |
348 | #define ERR_R_DISABLED (5|ERR_R_FATAL) | 348 | #define ERR_R_DISABLED (5|ERR_R_FATAL) |
349 | #define ERR_R_INIT_FAIL (6|ERR_R_FATAL) | ||
349 | 350 | ||
350 | /* 99 is the maximum possible ERR_R_... code, higher values | 351 | /* 99 is the maximum possible ERR_R_... code, higher values |
351 | * are reserved for the individual libraries */ | 352 | * are reserved for the individual libraries */ |
352 | 353 | ||
353 | |||
354 | typedef struct ERR_string_data_st { | 354 | typedef struct ERR_string_data_st { |
355 | unsigned long error; | 355 | unsigned long error; |
356 | const char *string; | 356 | const char *string; |