mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
Make hwmon support modular
This commit is contained in:
parent
7bf567641b
commit
9f98f6d0d8
12
src/hwmon.c
12
src/hwmon.c
@ -800,11 +800,13 @@ int hwmon_ctx_init (hwmon_ctx_t *hwmon_ctx, const user_options_t *user_options,
|
|||||||
{
|
{
|
||||||
hwmon_ctx->enabled = false;
|
hwmon_ctx->enabled = false;
|
||||||
|
|
||||||
if (user_options->gpu_temp_disable == true) return 0;
|
if (user_options->keyspace == true) return 0;
|
||||||
if (user_options->show == true) return 0;
|
if (user_options->left == true) return 0;
|
||||||
if (user_options->left == true) return 0;
|
if (user_options->show == true) return 0;
|
||||||
if (user_options->keyspace == true) return 0;
|
if (user_options->stdout_flag == true) return 0;
|
||||||
if (user_options->stdout_flag == true) return 0;
|
if (user_options->usage == true) return 0;
|
||||||
|
if (user_options->version == true) return 0;
|
||||||
|
if (user_options->gpu_temp_disable == true) return 0;
|
||||||
|
|
||||||
hwmon_ctx->hm_device = (hm_attrs_t *) mycalloc (DEVICES_MAX, sizeof (hm_attrs_t));
|
hwmon_ctx->hm_device = (hm_attrs_t *) mycalloc (DEVICES_MAX, sizeof (hm_attrs_t));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user