diff options
author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-04-27 18:10:51 +0200 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-04-27 18:10:51 +0200 |
commit | 711789580dc6ee3a1a22b8fee63f5eff7e7dbb5e (patch) | |
tree | 47fc194fe6eb671dd87fc2cbbfe3e3866a7dab50 /src/ipcpd/ipcp-data.c | |
parent | 9e0f4b5094386c4dfdf5db8bebcedf6430791573 (diff) | |
parent | 91c89c49257b4b9c698e5b7e90418915423ba1a2 (diff) | |
download | ouroboros-711789580dc6ee3a1a22b8fee63f5eff7e7dbb5e.tar.gz ouroboros-711789580dc6ee3a1a22b8fee63f5eff7e7dbb5e.zip |
Merged in sandervrijders/ouroboros/be (pull request #62)
ipcpd: Hide IRMd messages and fix formatting
Diffstat (limited to 'src/ipcpd/ipcp-data.c')
-rw-r--r-- | src/ipcpd/ipcp-data.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ipcpd/ipcp-data.c b/src/ipcpd/ipcp-data.c index 106226de..72407a53 100644 --- a/src/ipcpd/ipcp-data.c +++ b/src/ipcpd/ipcp-data.c @@ -189,11 +189,12 @@ void ipcp_data_destroy(struct ipcp_data * data) clear_directory(data); clear_flows(data); - /* no need to unlock, just free the entire thing - pthread_mutex_unlock(&data->flow_lock); - pthread_mutex_unlock(&data->dir_lock); - pthread_mutex_unlock(&data->reg_lock); - */ + /* + * no need to unlock, just free the entire thing + * pthread_mutex_unlock(&data->flow_lock); + * pthread_mutex_unlock(&data->dir_lock); + * pthread_mutex_unlock(&data->reg_lock); + */ free(data); } |