Commit ccbf4c1b authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

hnetcfg: Return success from fw_port_get_Enabled.

parent 3c31a373
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment