We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 062c156 commit 651349eCopy full SHA for 651349e
1 file changed
lib/core/option.py
@@ -1736,8 +1736,8 @@ def __basicOptionValidation():
1736
errMsg = "switch --regexp is incompatible with switch --null-connection"
1737
raise sqlmapSyntaxException, errMsg
1738
1739
- if conf.predictOutput and conf.threads > 1:
1740
- errMsg = "switch --predict-output is incompatible with switch --threads"
+ if conf.predictOutput and (conf.threads > 1 or conf.optimize):
+ errMsg = "switch --predict-output is incompatible with switch --threads and -o"
1741
1742
1743
if conf.threads > MAX_NUMBER_OF_THREADS:
0 commit comments