mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 21:04:33 +04:00
Add patch to remove definition of RNG leaking in from wolfssl.h. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
13 lines
283 B
Diff
13 lines
283 B
Diff
--- a/src/libstrongswan/plugins/wolfssl/wolfssl_plugin.c
|
|
+++ b/src/libstrongswan/plugins/wolfssl/wolfssl_plugin.c
|
|
@@ -50,6 +50,9 @@
|
|
#ifndef FIPS_MODE
|
|
#define FIPS_MODE 0
|
|
#endif
|
|
+#ifdef RNG
|
|
+#undef RNG
|
|
+#endif
|
|
|
|
typedef struct private_wolfssl_plugin_t private_wolfssl_plugin_t;
|
|
|