From: Nikolay Sivov Subject: [PATCH] hnetcfg: Claim success in INetFwOpenPorts::Add() Message-Id: <1461783096-6241-1-git-send-email-nsivov@codeweavers.com> Date: Wed, 27 Apr 2016 21:51:36 +0300 Signed-off-by: Nikolay Sivov --- For https://bugs.winehq.org/show_bug.cgi?id=37624 dlls/hnetcfg/port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hnetcfg/port.c b/dlls/hnetcfg/port.c index 036ecb9..7d74965 100644 --- a/dlls/hnetcfg/port.c +++ b/dlls/hnetcfg/port.c @@ -526,7 +526,7 @@ static HRESULT WINAPI fw_ports_Add( fw_ports *This = impl_from_INetFwOpenPorts( iface ); FIXME("%p, %p\n", This, port); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI fw_ports_Remove( -- 2.8.0.rc3