From: Jens Steube Date: Fri, 3 Jun 2016 19:04:10 +0000 (+0200) Subject: Show warning about bad opencl runtime on intel cpu only once X-Git-Tag: v3.00~85^2~1 X-Git-Url: https://www.flypig.org.uk/git/?a=commitdiff_plain;h=e5359036ff97ac81f8092bf4d4745d9d59e35aaf;p=hashcat.git Show warning about bad opencl runtime on intel cpu only once --- diff --git a/src/hashcat.c b/src/hashcat.c index ec635e7..031ee99 100644 --- a/src/hashcat.c +++ b/src/hashcat.c @@ -13627,8 +13627,11 @@ int main (int argc, char **argv) { if (data.force == 0) { - log_info ("Device #%u: WARNING: not native intel opencl runtime, expect massive speed loss", device_id + 1); - log_info (" You can use --force to override this but do not post error reports if you do so"); + if (algorithm_pos == 0) + { + log_info ("Device #%u: WARNING: not native intel opencl runtime, expect massive speed loss", device_id + 1); + log_info (" You can use --force to override this but do not post error reports if you do so"); + } device_param->skipped = 1; }