hnetcfg: Return success from fw_port_get_Enabled.

Hans Leidekker hans at codeweavers.com
Fri May 14 08:36:11 CDT 2010


---
 dlls/hnetcfg/port.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/dlls/hnetcfg/port.c b/dlls/hnetcfg/port.c
index c80b5f7..af821d6 100644
--- a/dlls/hnetcfg/port.c
+++ b/dlls/hnetcfg/port.c
@@ -270,7 +270,9 @@ static HRESULT WINAPI fw_port_get_Enabled(
     fw_port *This = impl_from_INetFwOpenPort( iface );
 
     FIXME("%p %p\n", This, enabled);
-    return E_NOTIMPL;
+
+    *enabled = VARIANT_TRUE;
+    return S_OK;
 }
 
 static HRESULT WINAPI fw_port_put_Enabled(
-- 
1.7.0.4







More information about the wine-patches mailing list