From 7ceeec8693b76894a3a9105569b846d38fde00a3 Mon Sep 17 00:00:00 2001 From: Jacob Cody Wimer Date: Mon, 30 Mar 2015 10:29:26 -0400 Subject: [PATCH] Changed @find to @finder --- source/find_cryptowall_infected_files.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/find_cryptowall_infected_files.rb b/source/find_cryptowall_infected_files.rb index 89f5dab..cbc7bf9 100644 --- a/source/find_cryptowall_infected_files.rb +++ b/source/find_cryptowall_infected_files.rb @@ -10,10 +10,10 @@ require_relative 'filecreate' puts @drives @drives.each do |drive| if drive.DriveType == 2 - @find = Cryptowallfinder.new - @find.outputFile = @outputFile - @find.path = drive.Path - @find.findInfectedFiles + @finder = Cryptowallfinder.new + @finder.outputFile = @outputFile + @finder.path = drive.Path + @finder.findInfectedFiles end end