Fix names of the #define used for platform specific code

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Andrea Grandi
2016-03-08 04:51:04 +00:00
committed by Rich Salz
parent 363a1fc602
commit 2ea9260496

View File

@@ -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;