File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 2020#include "helpers_prov.h"
2121#include "eddsa_common.h"
2222
23- #if !defined(OPENSSL_NO_EC ) && \
24- (OPENSSL_VERSION_NUMBER >= 0x30000000L ) && \
25- (OPENSSL_VERSION_NUMBER < 0x40000000L )
23+ #if !defined(OPENSSL_NO_EC ) && (OPENSSL_VERSION_NUMBER >= 0x30000000L )
2624
2725static void error_queue (const char * name )
2826{
@@ -160,10 +158,10 @@ int main(int argc, char *argv[])
160158#include <stdio.h>
161159
162160int main () {
163- fprintf (stderr , "Skipped: requires OpenSSL 3.x built with EC support\n" );
161+ fprintf (stderr , "Skipped: requires OpenSSL >= 3.0 built with EC support\n" );
164162 return 77 ;
165163}
166164
167- #endif /* !OPENSSL_NO_EC && OpenSSL 3.x */
165+ #endif /* !OPENSSL_NO_EC && OPENSSL_VERSION_NUMBER >= 0x30000000L */
168166
169167/* vim: set noexpandtab: */
Original file line number Diff line number Diff line change 2020#include "helpers_prov.h"
2121#include "eddsa_common.h"
2222
23- #if !defined(OPENSSL_NO_EC ) && \
24- (OPENSSL_VERSION_NUMBER >= 0x30000000L ) && \
25- (OPENSSL_VERSION_NUMBER < 0x40000000L )
23+ #if !defined(OPENSSL_NO_EC ) && (OPENSSL_VERSION_NUMBER >= 0x30000000L )
2624
2725static void error_queue (const char * name )
2826{
@@ -160,10 +158,10 @@ int main(int argc, char *argv[])
160158#include <stdio.h>
161159
162160int main () {
163- fprintf (stderr , "Skipped: requires OpenSSL 3.x built with EC support\n" );
161+ fprintf (stderr , "Skipped: requires OpenSSL >= 3.0 built with EC support\n" );
164162 return 77 ;
165163}
166164
167- #endif /* !OPENSSL_NO_EC && OpenSSL 3.x */
165+ #endif /* !OPENSSL_NO_EC && OPENSSL_VERSION_NUMBER >= 0x30000000L */
168166
169167/* vim: set noexpandtab: */
You can’t perform that action at this time.
0 commit comments