[PATCH 1/4] adsldp: If secure open object fails fallback to simple bind.

Dmitry Timoshkov dmitry at baikal.ru
Thu Mar 12 22:52:55 CDT 2020


This matches ADsGetObject() behaviour described in MSDN.

Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 dlls/adsldp/adsldp.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/adsldp/adsldp.c b/dlls/adsldp/adsldp.c
index acebf717aa..30bd1672f6 100644
--- a/dlls/adsldp/adsldp.c
+++ b/dlls/adsldp/adsldp.c
@@ -111,6 +111,8 @@ static HRESULT WINAPI ldap_ParseDisplayName(IParseDisplayName *iface, IBindCtx *
     if (hr != S_OK) return hr;
 
     hr = IADsOpenDSObject_OpenDSObject(ads_open, name, NULL, NULL, ADS_SECURE_AUTHENTICATION, &disp);
+    if (hr != S_OK)
+        hr = IADsOpenDSObject_OpenDSObject(ads_open, name, NULL, NULL, 0, &disp);
     if (hr == S_OK)
     {
         hr = CreatePointerMoniker((IUnknown *)disp, mk);
-- 
2.20.1




More information about the wine-devel mailing list