1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-08 21:52:51 +00:00

Mark OpenCL devices as listing

This commit is contained in:
jsteube 2016-10-15 14:34:07 +02:00
parent 017555e257
commit 91979bff69

View File

@ -2657,7 +2657,7 @@ int opencl_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime)
{ {
if (device_param->skipped == 0) if (device_param->skipped == 0)
{ {
event_log_info (hashcat_ctx, "Device #%u: %s, %lu/%lu MB allocatable, %uMCU", event_log_info (hashcat_ctx, "* Device #%u: %s, %lu/%lu MB allocatable, %uMCU",
device_id + 1, device_id + 1,
device_name, device_name,
(unsigned int) (device_maxmem_alloc / 1024 / 1024), (unsigned int) (device_maxmem_alloc / 1024 / 1024),
@ -2666,7 +2666,7 @@ int opencl_ctx_devices_init (hashcat_ctx_t *hashcat_ctx, const int comptime)
} }
else else
{ {
event_log_info (hashcat_ctx, "Device #%u: %s, skipped", event_log_info (hashcat_ctx, "* Device #%u: %s, skipped",
device_id + 1, device_id + 1,
device_name); device_name);
} }