summaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2022-09-29 15:33:20 +0200
committerRichard Levitte <levitte@openssl.org>2022-10-05 14:02:03 +0200
commit79c8dcf3985a7b75eac8e53eb8652728af6c5d3d (patch)
tree9bdbc3d39d7165024fbc22971ccc9713e86ca544 /engines
parente077455e9e57ed4ee4676996b4a9aa11df6327a6 (diff)
downloadopenssl-new-79c8dcf3985a7b75eac8e53eb8652728af6c5d3d.tar.gz
Add {lib}_R_{lib}_LIB, for our engines and other "external" modules
Engines lacked the possibility to refer to themselves in this form: WHATEVERerr(WHATEVER_F_SOMETHING, WHATEVER_R_WHATEVER_LIB); This little change makes that possible, and gets used in e_capi. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19301)
Diffstat (limited to 'engines')
-rw-r--r--engines/e_capi_err.c9
-rw-r--r--engines/e_capi_err.h3
2 files changed, 10 insertions, 2 deletions
diff --git a/engines/e_capi_err.c b/engines/e_capi_err.c
index 1d7636562e..8c233f01fd 100644
--- a/engines/e_capi_err.c
+++ b/engines/e_capi_err.c
@@ -1,6 +1,6 @@
/*
* Generated by util/mkerr.pl DO NOT EDIT
- * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@@ -92,3 +92,10 @@ static void ERR_CAPI_error(int function, int reason, const char *file, int line)
ERR_raise(lib_code, reason);
ERR_set_debug(file, line, NULL);
}
+
+static int ERR_CAPI_lib(void)
+{
+ if (lib_code == 0)
+ lib_code = ERR_get_next_error_library();
+ return lib_code;
+}
diff --git a/engines/e_capi_err.h b/engines/e_capi_err.h
index cd80c9be89..480a8269d3 100644
--- a/engines/e_capi_err.h
+++ b/engines/e_capi_err.h
@@ -1,6 +1,6 @@
/*
* Generated by util/mkerr.pl DO NOT EDIT
- * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@@ -17,6 +17,7 @@
# define CAPIerr(f, r) ERR_CAPI_error(0, (r), OPENSSL_FILE, OPENSSL_LINE)
+# define ERR_R_CAPI_LIB ERR_CAPI_lib()
/*