aboutsummaryrefslogtreecommitdiff
path: root/command_id.cc
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2020-07-28 11:50:38 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2020-07-28 11:50:38 +0200
commit080b88a018e0cca01d3e89ef264173c332ab4eeb (patch)
treeb3d1652fea8c1533777fef4ad7091285f312ac18 /command_id.cc
parent89a73d88c9026b6347bea113896d24e419c4370c (diff)
downloadlibnitrokey-080b88a018e0cca01d3e89ef264173c332ab4eeb.tar.gz
libnitrokey-080b88a018e0cca01d3e89ef264173c332ab4eeb.tar.bz2
Add missing macro for the NO_LOG feature switch, and cut other strings expl.
Diffstat (limited to 'command_id.cc')
-rw-r--r--command_id.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/command_id.cc b/command_id.cc
index 9a329bc..90f300f 100644
--- a/command_id.cc
+++ b/command_id.cc
@@ -26,6 +26,9 @@ namespace nitrokey {
namespace proto {
const char *commandid_to_string(CommandID id) {
+#ifdef NO_LOG
+ return "";
+#endif
switch (id) {
case CommandID::GET_STATUS:
return "GET_STATUS";