瀏覽代碼

HPCC-20499 Dafilesrv windows build break fix

The cryptohelper digisign implementations are not implemented
in WIN32 and the dafilesrv code should have been conditionally
dependent on OPENSSL _and_ WIN32 to avoid MSVC compilation issues.

Signed-off-by: Jake Smith <jake.smith@lexisnexisrisk.com>
Jake Smith 6 年之前
父節點
當前提交
271143f8b8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      common/remote/sockfile.cpp

+ 1 - 1
common/remote/sockfile.cpp

@@ -4496,7 +4496,7 @@ void verifyMetaInfo(IPropertyTree &actNode, bool authorizedOnly, const IProperty
     Owned<IPropertyTree> metaInfoEnvelope = createPTree(decompressedMetaInfoMb);
 
     Owned<IPropertyTree> metaInfo;
-#ifdef _USE_OPENSSL
+#if defined(_USE_OPENSSL) && !defined(_WIN32)
     MemoryBuffer metaInfoBlob;
     metaInfoEnvelope->getPropBin("metaInfoBlob", metaInfoBlob);