diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ipcpd/shim-eth-llc/main.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/ipcpd/shim-eth-llc/main.c b/src/ipcpd/shim-eth-llc/main.c index e735b651..4f4c98ea 100644 --- a/src/ipcpd/shim-eth-llc/main.c +++ b/src/ipcpd/shim-eth-llc/main.c @@ -1117,11 +1117,13 @@ static int eth_llc_ipcp_bootstrap(const struct ipcp_config * conf)          pthread_cancel(eth_llc_data.mgmt_handler);          pthread_join(eth_llc_data.mgmt_handler, NULL);   fail_mgmt_handler: -#ifdef __linux__ +#if defined(__linux__)          pthread_cancel(eth_llc_data.if_monitor);          pthread_join(eth_llc_data.if_monitor, NULL);  #endif +#if !defined(HAVE_NETMAP)   fail_device: +#endif  #if defined(HAVE_NETMAP)          nm_close(eth_llc_data.nmd);  #elif defined(HAVE_BPF) | 
