diff --git a/src/bitmap.c b/src/bitmap.c index 71f117500..d979f5764 100644 --- a/src/bitmap.c +++ b/src/bitmap.c @@ -64,6 +64,7 @@ void bitmap_ctx_init (bitmap_ctx_t *bitmap_ctx, const user_options_t *user_optio if (user_options->keyspace == true) return; if (user_options->left == true) return; + if (user_options->opencl_info == true) return; if (user_options->show == true) return; if (user_options->usage == true) return; if (user_options->version == true) return; diff --git a/src/combinator.c b/src/combinator.c index 2a6baab08..f5e0e99bd 100644 --- a/src/combinator.c +++ b/src/combinator.c @@ -14,10 +14,11 @@ int combinator_ctx_init (combinator_ctx_t *combinator_ctx, const user_options_t { combinator_ctx->enabled = false; - if (user_options->left == true) return 0; - if (user_options->show == true) return 0; - if (user_options->usage == true) return 0; - if (user_options->version == true) return 0; + if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; + if (user_options->show == true) return 0; + if (user_options->usage == true) return 0; + if (user_options->version == true) return 0; if ((user_options->attack_mode != ATTACK_MODE_COMBI) && (user_options->attack_mode != ATTACK_MODE_HYBRID1) diff --git a/src/cpt.c b/src/cpt.c index 5c0b3a311..cf197a893 100644 --- a/src/cpt.c +++ b/src/cpt.c @@ -15,6 +15,7 @@ int cpt_ctx_init (cpt_ctx_t *cpt_ctx, const user_options_t *user_options) if (user_options->keyspace == true) return 0; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->stdout_flag == true) return 0; if (user_options->usage == true) return 0; diff --git a/src/debugfile.c b/src/debugfile.c index b8aa8be69..8d34eb92b 100644 --- a/src/debugfile.c +++ b/src/debugfile.c @@ -16,6 +16,7 @@ int debugfile_init (debugfile_ctx_t *debugfile_ctx, const user_options_t *user_o if (user_options->benchmark == true) return 0; if (user_options->keyspace == true) return 0; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->stdout_flag == true) return 0; if (user_options->usage == true) return 0; diff --git a/src/dictstat.c b/src/dictstat.c index f8a0b73e9..d49e20dcd 100644 --- a/src/dictstat.c +++ b/src/dictstat.c @@ -32,6 +32,7 @@ void dictstat_init (dictstat_ctx_t *dictstat_ctx, const user_options_t *user_opt if (user_options->benchmark == true) return; if (user_options->keyspace == true) return; if (user_options->left == true) return; + if (user_options->opencl_info == true) return; if (user_options->show == true) return; if (user_options->usage == true) return; if (user_options->version == true) return; diff --git a/src/hwmon.c b/src/hwmon.c index bfc3aa127..effee8596 100644 --- a/src/hwmon.c +++ b/src/hwmon.c @@ -802,6 +802,7 @@ int hwmon_ctx_init (hwmon_ctx_t *hwmon_ctx, const user_options_t *user_options, if (user_options->keyspace == true) return 0; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->stdout_flag == true) return 0; if (user_options->usage == true) return 0; diff --git a/src/induct.c b/src/induct.c index 5b8ba635b..b6899a242 100644 --- a/src/induct.c +++ b/src/induct.c @@ -28,6 +28,7 @@ int induct_ctx_init (induct_ctx_t *induct_ctx, const user_options_t *user_option if (user_options->benchmark == true) return 0; if (user_options->keyspace == true) return 0; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->stdout_flag == true) return 0; if (user_options->usage == true) return 0; diff --git a/src/loopback.c b/src/loopback.c index 3ff0ab5d7..ae306337a 100644 --- a/src/loopback.c +++ b/src/loopback.c @@ -17,6 +17,7 @@ void loopback_init (loopback_ctx_t *loopback_ctx, const user_options_t *user_opt if (user_options->benchmark == true) return; if (user_options->keyspace == true) return; if (user_options->left == true) return; + if (user_options->opencl_info == true) return; if (user_options->show == true) return; if (user_options->stdout_flag == true) return; if (user_options->usage == true) return; diff --git a/src/mpsp.c b/src/mpsp.c index b43196807..6369f6e91 100644 --- a/src/mpsp.c +++ b/src/mpsp.c @@ -859,6 +859,7 @@ int mask_ctx_init (mask_ctx_t *mask_ctx, const user_options_t *user_options, con mask_ctx->enabled = false; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->usage == true) return 0; if (user_options->version == true) return 0; diff --git a/src/potfile.c b/src/potfile.c index 14222eb29..e03898253 100644 --- a/src/potfile.c +++ b/src/potfile.c @@ -113,6 +113,7 @@ void potfile_init (potfile_ctx_t *potfile_ctx, const user_options_t *user_option if (user_options->benchmark == true) return; if (user_options->keyspace == true) return; if (user_options->left == true) return; + if (user_options->opencl_info == true) return; if (user_options->show == true) return; if (user_options->stdout_flag == true) return; if (user_options->usage == true) return; diff --git a/src/restore.c b/src/restore.c index b7e2c23e1..fe304d2b5 100644 --- a/src/restore.c +++ b/src/restore.c @@ -360,6 +360,7 @@ int restore_ctx_init (restore_ctx_t *restore_ctx, user_options_t *user_options, if (user_options->benchmark == true) return 0; if (user_options->keyspace == true) return 0; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->stdout_flag == true) return 0; if (user_options->usage == true) return 0; diff --git a/src/straight.c b/src/straight.c index 6cd1e5fa7..943104079 100644 --- a/src/straight.c +++ b/src/straight.c @@ -22,6 +22,7 @@ int straight_ctx_init (straight_ctx_t *straight_ctx, const user_options_t *user_ straight_ctx->enabled = false; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->usage == true) return 0; if (user_options->version == true) return 0; diff --git a/src/tuningdb.c b/src/tuningdb.c index 336d53c50..4281159e0 100644 --- a/src/tuningdb.c +++ b/src/tuningdb.c @@ -56,6 +56,7 @@ int tuning_db_init (tuning_db_t *tuning_db, const user_options_t *user_options, if (user_options->keyspace == true) return 0; if (user_options->left == true) return 0; + if (user_options->opencl_info == true) return 0; if (user_options->show == true) return 0; if (user_options->usage == true) return 0; if (user_options->version == true) return 0; diff --git a/src/wordlist.c b/src/wordlist.c index 709d0c092..a3198f52c 100644 --- a/src/wordlist.c +++ b/src/wordlist.c @@ -407,6 +407,7 @@ void wl_data_init (wl_data_t *wl_data, const user_options_t *user_options, const if (user_options->benchmark == true) return; if (user_options->keyspace == true) return; if (user_options->left == true) return; + if (user_options->opencl_info == true) return; if (user_options->show == true) return; if (user_options->usage == true) return; if (user_options->version == true) return;