Hans Leidekker : hnetcfg: Return success from fw_port_get_Enabled.

Alexandre Julliard julliard at winehq.org
Fri May 14 11:17:29 CDT 2010


Module: wine
Branch: master
Commit: ccbf4c1b94ea7102afeeb3dba7393840e21b1dbf
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ccbf4c1b94ea7102afeeb3dba7393840e21b1dbf

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Fri May 14 15:36:11 2010 +0200

hnetcfg: Return success from fw_port_get_Enabled.

---

 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(




More information about the wine-cvs mailing list