From 629aaa9d82c9e63464ad556476f5253c3cd3ba2d Mon Sep 17 00:00:00 2001 From: Gavin Halliday Date: Thu, 26 Oct 2023 12:44:01 +0100 Subject: [PATCH] Fix windows compile error Signed-off-by: Gavin Halliday --- system/security/securesocket/securesocket.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/security/securesocket/securesocket.hpp b/system/security/securesocket/securesocket.hpp index e5a1b643c6c..cc790676f7d 100644 --- a/system/security/securesocket/securesocket.hpp +++ b/system/security/securesocket/securesocket.hpp @@ -94,7 +94,7 @@ SECURESOCKET_API ISecureSocketContext* createSecureSocketContextSecretSrv(const SECURESOCKET_API ISecureSocketContext* createSecureSocketContextSSF(ISmartSocketFactory* ssf); //Helper function to aid migration to the functions above. This should eventually be removed. -IPropertyTree * createSecureSocketConfig(const char* certFileOrBuf, const char* privKeyFileOrBuf, const char* passphrase); +SECURESOCKET_API IPropertyTree * createSecureSocketConfig(const char* certFileOrBuf, const char* privKeyFileOrBuf, const char* passphrase); //Legacy factory methods - should be phased out. SECURESOCKET_API ISecureSocketContext* createSecureSocketContext(SecureSocketType);