renamed store_src_code_elf to store_src_code_binary

This commit is contained in:
Julian Hammer
2018-11-30 13:57:48 +01:00
parent 36490bbeb2
commit dd692097a9

View File

@@ -218,7 +218,7 @@ class OSACA(object):
"""
if os.path.isfile(self.file_path):
self.store_src_code_elf()
self.store_src_code_binary()
try:
if 'file format elf64' in self.srcCode[1].lower():
return True
@@ -249,7 +249,7 @@ class OSACA(object):
return True
return False
def store_src_code_elf(self):
def store_src_code_binary(self):
"""
Load binary file compiled with '-g' in class attribute srcCode and
separate by line.