about summary refs log tree commit diff stats
path: root/example/jitter
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2018-10-12 08:15:18 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2018-10-12 08:15:18 +0200
commit80744d14e4711383b0d9c9b90a6e68971abef411 (patch)
tree67323ea07800ff88469e58ec033dd2766b38c13a /example/jitter
parent3cd3675165cd96c030401fbb1e6392898507a71b (diff)
downloadmiasm-80744d14e4711383b0d9c9b90a6e68971abef411.tar.gz
miasm-80744d14e4711383b0d9c9b90a6e68971abef411.zip
Sandbox: change use_seh
Option name change: use-windows-structs instead of use-seh.
Diffstat (limited to '')
-rw-r--r--example/jitter/test_x86_32_seh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/test_x86_32_seh.py b/example/jitter/test_x86_32_seh.py
index 5277807d..e7f8cff4 100644
--- a/example/jitter/test_x86_32_seh.py
+++ b/example/jitter/test_x86_32_seh.py
@@ -36,7 +36,7 @@ parser = Sandbox_Win_x86_32.parser(description="PE sandboxer")
 parser.add_argument("filename", help="PE Filename")
 options = parser.parse_args()
 options.usesegm = True
-options.use_seh = True
+options.use_windows_structs = True
 
 # Create sandbox
 sb = Sandbox_Win_x86_32(options.filename, options, globals())