nsiproxy: Add an #ifdef guard for SIN_ROUTER.
It's not defined in FreeBSD. Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a8d2de6092
commit
ab31bf5d8c
|
@ -962,7 +962,11 @@ static NTSTATUS ipv4_neighbour_enumerate_all( void *key_data, DWORD key_size, vo
|
|||
memcpy( entry.phys_addr, &sdl->sdl_data[sdl->sdl_nlen], entry.phys_addr_len );
|
||||
if (rtm->rtm_rmx.rmx_expire == 0) entry.state = NlnsPermanent;
|
||||
else entry.state = NlnsReachable;
|
||||
#ifdef SIN_ROUTER
|
||||
entry.is_router = sinarp->sin_other & SIN_ROUTER;
|
||||
#else
|
||||
entry.is_router = 0;
|
||||
#endif
|
||||
entry.is_unreachable = 0; /* FIXME */
|
||||
|
||||
if (num < *count)
|
||||
|
|
Loading…
Reference in New Issue