1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-17 01:52:06 +00:00

Get rid of powertune_enable variable in data. context

This commit is contained in:
jsteube 2016-09-22 15:09:11 +02:00
parent 88f97f2cca
commit d4074d87a1
2 changed files with 0 additions and 2 deletions

View File

@ -976,7 +976,6 @@ typedef struct
u32 hex_wordlist; u32 hex_wordlist;
u32 pw_min; u32 pw_min;
u32 pw_max; u32 pw_max;
u32 powertune_enable;
u32 scrypt_tmto; u32 scrypt_tmto;
u32 segment_size; u32 segment_size;
char *truecrypt_keyfiles; char *truecrypt_keyfiles;

View File

@ -276,7 +276,6 @@ int main (int argc, char **argv)
data.hex_salt = user_options->hex_salt; data.hex_salt = user_options->hex_salt;
data.hex_wordlist = user_options->hex_wordlist; data.hex_wordlist = user_options->hex_wordlist;
data.logfile_disable = user_options->logfile_disable; data.logfile_disable = user_options->logfile_disable;
data.powertune_enable = user_options->powertune_enable;
data.quiet = user_options->quiet; data.quiet = user_options->quiet;
data.scrypt_tmto = user_options->scrypt_tmto; data.scrypt_tmto = user_options->scrypt_tmto;
data.segment_size = user_options->segment_size; data.segment_size = user_options->segment_size;