Commit d20aca6b authored by Sven Baars's avatar Sven Baars Committed by Alexandre Julliard

nsiproxy.sys: Return STATUS_SUCCESS from ipv6_forward_enumerate_all() on non-Linux.

This restores behavior from before 5a7d75cd.
parent bb88ca70
......@@ -1614,7 +1614,8 @@ static NTSTATUS ipv6_forward_enumerate_all( void *key_data, UINT key_size, void
}
#else
FIXME( "not implemented\n" );
return STATUS_NOT_IMPLEMENTED;
*count = 0;
return STATUS_SUCCESS;
#endif
if (!want_data || num <= *count) *count = num;
......
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