Explorar o código

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 %!s(int64=6) %!d(string=hai) anos
pai
achega
271143f8b8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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);