diff options
Diffstat (limited to 'client/controller.cpp')
| -rw-r--r-- | client/controller.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/controller.cpp b/client/controller.cpp index 91c00212..a0269be3 100644 --- a/client/controller.cpp +++ b/client/controller.cpp @@ -334,9 +334,12 @@ bool ControllerConnection::handle_message(ControllerMsg *hdr) case CONTROLLER_DELETE_MENU: _handler->delete_menu(); break; + case CONTROLLER_ENABLE_SMARTCARD: + _handler->enable_smartcard(value); + break; case CONTROLLER_SEND_CAD: default: - LOG_ERROR("Ignoring an unknown controller message %u", hdr->id); + LOG_ERROR("Ignoring an unknown/SEND_CAD controller message %u", hdr->id); return false; } return true; |
