Module: wine Branch: master Commit: dc1fa72d1d58c10285b744e7939fa34ef64d5dd1 URL: https://gitlab.winehq.org/wine/wine/-/commit/dc1fa72d1d58c10285b744e7939fa34...
Author: Hans Leidekker hans@codeweavers.com Date: Fri Aug 12 16:51:28 2022 +0200
hnetcfg: Return success from netfw_rules_Add() and netfw_rules_Remove().
---
dlls/hnetcfg/policy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/hnetcfg/policy.c b/dlls/hnetcfg/policy.c index e603e1a1626..5031fdcdd92 100644 --- a/dlls/hnetcfg/policy.c +++ b/dlls/hnetcfg/policy.c @@ -759,7 +759,7 @@ static HRESULT WINAPI netfw_rules_Add( fw_rules *This = impl_from_INetFwRules( iface );
FIXME("%p, %p\n", This, rule); - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI netfw_rules_Remove( @@ -769,7 +769,7 @@ static HRESULT WINAPI netfw_rules_Remove( fw_rules *This = impl_from_INetFwRules( iface );
FIXME("%p, %s\n", This, debugstr_w(name)); - return E_NOTIMPL; + return S_OK; }
static HRESULT WINAPI netfw_rules_Item(