From 9119e2b9bbb11b4ae21618fbaacfe6edaeb2a62b Mon Sep 17 00:00:00 2001 From: Gabriele Contini <contini.mailing@gmail.com> Date: 周六, 15 2月 2020 23:49:50 +0800 Subject: [PATCH] pc identifiers work --- src/library/limits/license_verifier.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/library/limits/license_verifier.cpp b/src/library/limits/license_verifier.cpp index 86e3181..71c2cc8 100644 --- a/src/library/limits/license_verifier.cpp +++ b/src/library/limits/license_verifier.cpp @@ -9,9 +9,9 @@ #include <licensecc_properties.h> #include "license_verifier.hpp" -#include "../pc_identifier/pc_identifier_facade.hpp" #include "../base/StringUtils.h" #include "../os/signature_verifier.hpp" +#include "../hw_identifier/hw_identifier_facade.hpp" namespace license { using namespace std; @@ -57,7 +57,7 @@ } const auto client_sig = lic_info.m_limits.find(PARAM_CLIENT_SIGNATURE); if (is_valid && client_sig != lic_info.m_limits.end()) { - const LCC_EVENT_TYPE event = pc_identifier::PcIdentifierFacade::validate_pc_signature(client_sig->second); + const LCC_EVENT_TYPE event = hw_identifier::HwIdentifierFacade::validate_pc_signature(client_sig->second); m_event_registry.addEvent(event, lic_info.source); is_valid = is_valid && (event == LICENSE_OK); } -- Gitblit v1.9.1