diff options
Diffstat (limited to 'src/ipcpd')
| -rw-r--r-- | src/ipcpd/shim-udp/main.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/src/ipcpd/shim-udp/main.c b/src/ipcpd/shim-udp/main.c index 186f0ebc..ccd8530b 100644 --- a/src/ipcpd/shim-udp/main.c +++ b/src/ipcpd/shim-udp/main.c @@ -1151,6 +1151,8 @@ static int ipcp_udp_name_reg(char * name)                          return -1;                  }          } +#else +        rw_lock_unlock(&_ipcp->state_lock);  #endif          LOG_DBG("Registered %s.", name); @@ -1606,7 +1608,9 @@ int main (int argc, char * argv[])          free(_ipcp->ops);          free(_ipcp); -        exit(0); +        LOG_DBG("IPCP exited."); + +        exit(EXIT_SUCCESS);  }  #endif /* MAKE_CHECK */ | 
