From 7363a16318f9cf570a66d7d612d0602f9acfac86 Mon Sep 17 00:00:00 2001 From: Dan Puttick Date: Fri, 14 Jul 2017 21:57:29 -0400 Subject: [PATCH] Remove calls to make_binary and make_unknown --- bin/filecheck.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bin/filecheck.py b/bin/filecheck.py index 41836a8..7bc9179 100644 --- a/bin/filecheck.py +++ b/bin/filecheck.py @@ -441,13 +441,11 @@ class File(FileBase): def _unknown_app(self): """Process an unknown file.""" - self.add_description('Unknown application file') - self.make_unknown() + self.make_dangerous('Unknown application file') def _binary_app(self): """Process an unknown binary file.""" - self.add_description('Unknown binary file') - self.make_binary() + self.make_dangerous('Unknown binary file') ####################### # Metadata extractors