mirror of
https://github.com/hashcat/hashcat.git
synced 2025-08-05 13:25:39 +00:00
Fix missed set of attribute skipped_temp
This commit is contained in:
parent
84312bfae6
commit
d7da964a7c
@ -3652,7 +3652,6 @@ int opencl_session_begin (hashcat_ctx_t *hashcat_ctx)
|
|||||||
|
|
||||||
bool skipped_temp = false;
|
bool skipped_temp = false;
|
||||||
|
|
||||||
#if defined (__APPLE__)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If '--force' is not set, we proceed to excluding unstable hash-modes,
|
* 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;
|
skipped_temp = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // __APPLE__
|
|
||||||
|
|
||||||
if ((skipped_temp == true) && (user_options->force == false))
|
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 = true;
|
||||||
|
|
||||||
device_param->skipped_temp == true;
|
device_param->skipped_temp = true;
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user