From a41eb6febaf4705a607ec934c7ffc73050f17389 Mon Sep 17 00:00:00 2001 From: JP Smith Date: Mon, 10 Apr 2017 12:40:45 -0500 Subject: [PATCH] Fix typo in linux.py (#116) --- manticore/models/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manticore/models/linux.py b/manticore/models/linux.py index 0e234ab..21977a9 100644 --- a/manticore/models/linux.py +++ b/manticore/models/linux.py @@ -1153,7 +1153,7 @@ class Linux(object): pass mode = { os.O_RDWR: 'r+', os.O_RDONLY: 'r', os.O_WRONLY: 'w' }[flags&7] f = File(filename, mode) #todo modes, flags - logger.debug("Openning file %s for %s real fd %d",filename, mode, f.fileno()) + logger.debug("Opening file %s for %s real fd %d",filename, mode, f.fileno()) except Exception,e: logger.info("Could not open file %s. Reason %s"%(filename,str(e))) return -1