From 75bbfc7d9e3d0f26a507c494b1e94fe71fa26ad0 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Mon, 21 Mar 2016 08:46:27 +0100 Subject: fixed device status logging --- include/dissect.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/dissect.h') diff --git a/include/dissect.h b/include/dissect.h index f552950..993d348 100644 --- a/include/dissect.h +++ b/include/dissect.h @@ -63,12 +63,12 @@ class ResponseDissector : semantics::non_constructible { out << ::nitrokey::misc::hexdump((const char *)(&pod), sizeof pod); out << "Device status:\t" << pod.device_status + 0 << " " - << cmd[pod.device_status] << std::endl; + << status[pod.device_status] << std::endl; out << "Command ID:\t" << commandid_to_string((CommandID)(pod.command_id)) << std::endl; out << "Last command CRC:\t" << pod.last_command_crc << std::endl; out << "Last command status:\t" << pod.last_command_status + 0 << " " - << status[pod.last_command_status] << std::endl; + << cmd[pod.last_command_status] << std::endl; out << "CRC:\t" << pod.crc << std::endl; out << "Payload:" << std::endl; -- cgit v1.2.1