diff options
| author | Peter Jones <pjones@redhat.com> | 2017-11-02 18:12:17 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2017-12-19 16:36:55 -0500 |
| commit | b9e81483bb96b1fb471a981dff625807eb0a58ca (patch) | |
| tree | a6a0d8bc6142f4850607474f835419c052c2e56c | |
| parent | 5e827007b3d95c4ce999422462248f5e7d3f270f (diff) | |
| download | efi-boot-shim-b9e81483bb96b1fb471a981dff625807eb0a58ca.tar.gz efi-boot-shim-b9e81483bb96b1fb471a981dff625807eb0a58ca.zip | |
Don't let openssl() try to call an external abort()
Signed-off-by: Peter Jones <pjones@redhat.com>
| -rw-r--r-- | Cryptlib/Include/OpenSslSupport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Cryptlib/Include/OpenSslSupport.h b/Cryptlib/Include/OpenSslSupport.h index d7650b3c..4da4d6cb 100644 --- a/Cryptlib/Include/OpenSslSupport.h +++ b/Cryptlib/Include/OpenSslSupport.h @@ -380,5 +380,6 @@ extern FILE *stdout; #define atoi(nptr) AsciiStrDecimalToUintn(nptr)
#define gettimeofday(tvp,tz) do { (tvp)->tv_sec = time(NULL); (tvp)->tv_usec = 0; } while (0)
#define gmtime_r(timer,result) (result = NULL)
+#define abort()
#endif
|
