Fix names of the #define used for platform specific code
authorAndrea Grandi <andrea.grandi@intel.com>
Tue, 8 Mar 2016 04:51:04 +0000 (04:51 +0000)
committerRich Salz <rsalz@openssl.org>
Wed, 9 Mar 2016 02:04:09 +0000 (21:04 -0500)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
apps/speed.c

index d80a4055d505c77fa7768f5cd829444cbe85eb30..b6843ec38e09066366776fbd7cdd97964c58f50c 100644 (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;