From 59ba4c2d93264753b6e4f69a2c88d626f2b871ae Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 22 Sep 2016 15:00:31 +0200 Subject: [PATCH] Get rid of machine_readable 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 0f2b52986..3e84373dc 100644 --- a/include/types.h +++ b/include/types.h @@ -969,7 +969,6 @@ typedef struct u32 attack_mode; u32 attack_kern; - u32 machine_readable; u32 quiet; u32 force; u32 benchmark; diff --git a/src/hashcat.c b/src/hashcat.c index 79f9b03cc..c961f7fe7 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -277,7 +277,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.machine_readable = user_options->machine_readable; data.powertune_enable = user_options->powertune_enable; data.quiet = user_options->quiet; data.runtime = user_options->runtime;