From dc1fa72d1d58c10285b744e7939fa34ef64d5dd1 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Fri, 12 Aug 2022 16:51:28 +0200 Subject: [PATCH] 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(