From 6d992ec37e457ab8f8f379a7b94383459baad3da Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 22 Sep 2016 14:46:04 +0200 Subject: [PATCH] Get rid of remove* variables in data. context --- include/types.h | 2 -- src/hashcat.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/include/types.h b/include/types.h index 0b7efea33..e2ebb534c 100644 --- a/include/types.h +++ b/include/types.h @@ -979,8 +979,6 @@ typedef struct u32 force; u32 benchmark; u32 runtime; - u32 remove; - u32 remove_timer; u32 hex_charset; u32 hex_salt; u32 hex_wordlist; diff --git a/src/hashcat.c b/src/hashcat.c index a1bf9677b..15b0fa9e5 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -282,8 +282,6 @@ int main (int argc, char **argv) data.outfile_check_timer = user_options->outfile_check_timer; data.powertune_enable = user_options->powertune_enable; data.quiet = user_options->quiet; - data.remove = user_options->remove; - data.remove_timer = user_options->remove_timer; data.runtime = user_options->runtime; data.scrypt_tmto = user_options->scrypt_tmto; data.segment_size = user_options->segment_size;