1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-16 18:51:00 +00:00

Updated status code: set -10 for autotune failure

This commit is contained in:
Gabriele Gristina 2022-01-21 20:28:13 +01:00
parent 6175459b0a
commit 10fa1434ca
2 changed files with 15 additions and 14 deletions

View File

@ -1,6 +1,7 @@
status codes on exit: status codes on exit:
===================== =====================
-10 = autotune failure
-8 = mixed backend errors (combo of -3, -4, -5, -6, -7 errors type) -8 = mixed backend errors (combo of -3, -4, -5, -6, -7 errors type)
-7 = backend error: Invalid module_extra_buffer_size -7 = backend error: Invalid module_extra_buffer_size
-6 = backend error: Too many compute units to keep minimum kernel accel limit -6 = backend error: Too many compute units to keep minimum kernel accel limit

View File

@ -266,7 +266,7 @@ static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
event_log_warning (hashcat_ctx, "You can use --force to override this, but do not report related errors."); event_log_warning (hashcat_ctx, "You can use --force to override this, but do not report related errors.");
event_log_warning (hashcat_ctx, NULL); event_log_warning (hashcat_ctx, NULL);
return -1; return -10;
} }
} }
} }