aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NK_C_API.h2
-rw-r--r--NitrokeyManager.cc3
2 files changed, 0 insertions, 5 deletions
diff --git a/NK_C_API.h b/NK_C_API.h
index a25c528..5554426 100644
--- a/NK_C_API.h
+++ b/NK_C_API.h
@@ -8,8 +8,6 @@
extern "C"
{
-//Make sure each function's declaration is in one line (for automatic python declaration processing)
-
/**
* Set debug level of messages written on stderr
* @param state state=True - all messages, state=False - only errors level
diff --git a/NitrokeyManager.cc b/NitrokeyManager.cc
index 488c5fe..f7b3492 100644
--- a/NitrokeyManager.cc
+++ b/NitrokeyManager.cc
@@ -186,11 +186,8 @@ namespace nitrokey{
strcpyT(auth.temporary_password, temporary_password);
auth.crc_to_authorize = WriteToTOTPSlot::CommandTransaction::getCRC(payload);
Authorize::CommandTransaction::run(*device, auth);
-// auto auth_successful = device->last_command_sucessfull();
auto resp = WriteToTOTPSlot::CommandTransaction::run(*device, payload);
-// auto write_successful = device->last_command_sucessfull();
-// return auth_successful && write_successful; //left to show alternative approach
return true;
}