summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/Util/InstallerUtil.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Util/InstallerUtil.cpp b/src/Util/InstallerUtil.cpp
index 6b47f51..61d0eb7 100755
--- a/src/Util/InstallerUtil.cpp
+++ b/src/Util/InstallerUtil.cpp
@@ -33,7 +33,7 @@
#include "InstallerDefs.h"
#include "InstallerUtil.h"
-#include <drm-oem-intel.h>
+//#include <drm-oem-intel.h>
using namespace Osp::Base;
using namespace Osp::Base::Collection;
@@ -342,7 +342,7 @@ InstallerUtil::IsDrmFile(const Osp::Base::String& path)
pFilePath = _StringConverter::CopyToCharArrayN(path);
TryCatch(pFilePath, r = GetLastResult(), "[osp-installer] pFilePath is null");
- isDrm = drm_oem_intel_isDrmFile(pFilePath);
+// isDrm = drm_oem_intel_isDrmFile(pFilePath);
if(isDrm == 1)
{
AppLogTag(OSP_INSTALLER, "IsDrmFile() called, packagePath=%ls is drm file", path.GetPointer());
@@ -369,7 +369,7 @@ InstallerUtil::DecryptPackage(const Osp::Base::String& packagePath)
pFilePath = _StringConverter::CopyToCharArrayN(packagePath);
TryCatch(pFilePath, r = GetLastResult(), "[osp-installer] pFilePath is null");
- result = drm_oem_intel_decrypt_package(pFilePath, pFilePath);
+// result = drm_oem_intel_decrypt_package(pFilePath, pFilePath);
if(result == 1)
{
AppLogTag(OSP_INSTALLER, "DecryptPackage() called, packagePath=%ls, decrpyt success", packagePath.GetPointer());