From: Andrea Grandi Date: Tue, 8 Mar 2016 04:51:04 +0000 (+0000) Subject: Fix names of the #define used for platform specific code X-Git-Tag: OpenSSL_1_1_0-pre4~202 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2ea92604969fb9e5e53e135393e04ebc512f808b;p=oweals%2Fopenssl.git Fix names of the #define used for platform specific code Reviewed-by: Matt Caswell Reviewed-by: Rich Salz --- diff --git a/apps/speed.c b/apps/speed.c index d80a4055d5..b6843ec38e 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -1150,9 +1150,9 @@ static int run_benchmark(int async_jobs, int (*loop_function)(void *), loopargs_ } while (num_inprogress > 0) { -#if defined(ASYNC_SYS_WINDOWS) +#if defined(OPENSSL_SYS_WINDOWS) DWORD avail = 0; -#elif defined(ASYNC_SYS_UNIX) +#elif defined(OPENSSL_SYS_UNIX) int select_result = 0; OSSL_ASYNC_FD max_fd = 0; fd_set waitfdset;