From d4074d87a1a042fd7238834af060bb47a2eaf2af Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 22 Sep 2016 15:09:11 +0200 Subject: [PATCH] Get rid of powertune_enable variable in data. context --- include/types.h | 1 - src/hashcat.c | 1 - 2 files changed, 2 deletions(-) diff --git a/include/types.h b/include/types.h index 579c19b7d..af40554a4 100644 --- a/include/types.h +++ b/include/types.h @@ -976,7 +976,6 @@ typedef struct u32 hex_wordlist; u32 pw_min; u32 pw_max; - u32 powertune_enable; u32 scrypt_tmto; u32 segment_size; char *truecrypt_keyfiles; diff --git a/src/hashcat.c b/src/hashcat.c index 22230b5dd..6af6c10b1 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -276,7 +276,6 @@ int main (int argc, char **argv) data.hex_salt = user_options->hex_salt; data.hex_wordlist = user_options->hex_wordlist; data.logfile_disable = user_options->logfile_disable; - data.powertune_enable = user_options->powertune_enable; data.quiet = user_options->quiet; data.scrypt_tmto = user_options->scrypt_tmto; data.segment_size = user_options->segment_size;