diff options
| author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-07 09:50:30 +0200 | 
|---|---|---|
| committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-07 09:50:30 +0200 | 
| commit | 80441117cf61137c6a8c97e0779e70d76ae8541d (patch) | |
| tree | 01691cd4b34c9a5292f375dd1d12e80335dfeaf8 /src/ipcpd/local | |
| parent | b61b1ce112261f812ff1d6093b89768eeca237b5 (diff) | |
| parent | 442c2b866e55545a0e21eaaf36b11621c8110411 (diff) | |
| download | ouroboros-80441117cf61137c6a8c97e0779e70d76ae8541d.tar.gz ouroboros-80441117cf61137c6a8c97e0779e70d76ae8541d.zip | |
Merged in dstaesse/ouroboros/be-irmd-fix-create (pull request #164)
lib:irmd: Fix logs and irm_create
Diffstat (limited to 'src/ipcpd/local')
| -rw-r--r-- | src/ipcpd/local/main.c | 15 | 
1 files changed, 10 insertions, 5 deletions
| diff --git a/src/ipcpd/local/main.c b/src/ipcpd/local/main.c index ffe69dfb..ae75ae5e 100644 --- a/src/ipcpd/local/main.c +++ b/src/ipcpd/local/main.c @@ -585,11 +585,13 @@ int main(int argc, char * argv[])          if (ipcp_parse_arg(argc, argv)) {                  LOG_ERR("Failed to parse arguments."); -                exit(1); +                exit(EXIT_FAILURE);          } -        if (shim_ap_init() < 0) -                exit(1); +        if (shim_ap_init() < 0) { +                close_logfile(); +                exit(EXIT_FAILURE); +        }          /* store the process id of the irmd */          irmd_api = atoi(argv[1]); @@ -608,8 +610,9 @@ int main(int argc, char * argv[])          _ipcp = ipcp_local_create();          if (_ipcp == NULL) { -                LOG_ERR("Won't."); -                exit(1); +                LOG_ERR("Failed to create IPCP."); +                close_logfile(); +                exit(EXIT_FAILURE);          }          pthread_rwlock_wrlock(&_ipcp->state_lock); @@ -630,6 +633,8 @@ int main(int argc, char * argv[])          free(_ipcp->ops);          free(_ipcp); +        close_logfile(); +          exit(EXIT_SUCCESS);  } | 
