From d7da964a7c13541157e7488765c1e05a3de54c6d Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 18 Oct 2017 12:57:15 +0200 Subject: [PATCH] Fix missed set of attribute skipped_temp --- src/opencl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/opencl.c b/src/opencl.c index cbde9206a..cbaacb326 100644 --- a/src/opencl.c +++ b/src/opencl.c @@ -3652,7 +3652,6 @@ int opencl_session_begin (hashcat_ctx_t *hashcat_ctx) bool skipped_temp = false; - #if defined (__APPLE__) /** * If '--force' is not set, we proceed to excluding unstable hash-modes, @@ -3673,7 +3672,6 @@ int opencl_session_begin (hashcat_ctx_t *hashcat_ctx) skipped_temp = true; } - #endif // __APPLE__ if ((skipped_temp == true) && (user_options->force == false)) { @@ -3682,7 +3680,7 @@ int opencl_session_begin (hashcat_ctx_t *hashcat_ctx) device_param->skipped = true; - device_param->skipped_temp == true; + device_param->skipped_temp = true; continue; }