[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Wed Feb 21 09:50:38 UTC 2018
The branch master has been updated
via b8a3f39b890304757058deb730c855b72c14947b (commit)
from d4c499f562c1ab7ec7773c3987fc4dce7662a805 (commit)
- Log -----------------------------------------------------------------
commit b8a3f39b890304757058deb730c855b72c14947b
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Feb 21 10:15:16 2018 +0100
VMS: Fix curve448 internal test program
The internals test programs access header files that aren't guarded by
the public __DECC_INCLUDE_PROLOGUE.H and __DECC_INCLUDE_EPILOGUE.H
files, and therefore have no idea what the naming convention is.
Therefore, we need to specify that explicitely in the internals test
programs, since they aren't built with the same naming convention as
the library they belong with.
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5425)
-----------------------------------------------------------------------
Summary of changes:
test/curve448_internal_test.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/test/curve448_internal_test.c b/test/curve448_internal_test.c
index aac4818..8c9b09d 100644
--- a/test/curve448_internal_test.c
+++ b/test/curve448_internal_test.c
@@ -10,7 +10,18 @@
#include <string.h>
#include <openssl/e_os2.h>
#include <openssl/evp.h>
+
+#ifdef __VMS
+# pragma names save
+# pragma names as_is,shortened
+#endif
+
#include "curve448_lcl.h"
+
+#ifdef __VMS
+# pragma names restore
+#endif
+
#include "testutil.h"
static unsigned int max = 1000;
More information about the openssl-commits
mailing list