diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-08-11 16:46:59 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-08-11 16:46:59 +0200 |
commit | cf30e07cf862b117013e8c7fa2fb5c2ac8fef245 (patch) | |
tree | df02b2c3659bd69a146586eaef985a3749780648 /src/ipcpd/normal | |
parent | e5a7b3bd7ebe473c035df2cee58416f848f56389 (diff) | |
parent | b3c27cda358c24e867a42199e0d5702d9d0b1607 (diff) | |
download | ouroboros-cf30e07cf862b117013e8c7fa2fb5c2ac8fef245.tar.gz ouroboros-cf30e07cf862b117013e8c7fa2fb5c2ac8fef245.zip |
Merged in dstaesse/ouroboros/be-bind-api (pull request #208)
ipcpd: normal: Fix log message
Diffstat (limited to 'src/ipcpd/normal')
-rw-r--r-- | src/ipcpd/normal/main.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ipcpd/normal/main.c b/src/ipcpd/normal/main.c index 1599166d..b5aad271 100644 --- a/src/ipcpd/normal/main.c +++ b/src/ipcpd/normal/main.c @@ -135,7 +135,7 @@ static int normal_ipcp_enroll(char * dif_name) if (_ipcp->state != IPCP_INIT) { pthread_rwlock_unlock(&_ipcp->state_lock); - LOG_DBGF("Won't enroll an IPCP that is not in INIT."); + LOG_ERR("Won't enroll an IPCP that is not in INIT."); return -1; /* -ENOTINIT */ } @@ -161,11 +161,13 @@ static int normal_ipcp_enroll(char * dif_name) static int normal_ipcp_bootstrap(struct dif_config * conf) { + LOG_DBGF("bootstrapping in dif %s.", conf->dif_name); + pthread_rwlock_rdlock(&_ipcp->state_lock); if (_ipcp->state != IPCP_INIT) { pthread_rwlock_unlock(&_ipcp->state_lock); - LOG_DBGF("Won't bootstrap an IPCP that is not in INIT."); + LOG_ERR("Won't bootstrap an IPCP that is not in INIT."); return -1; /* -ENOTINIT */ } @@ -176,7 +178,7 @@ static int normal_ipcp_bootstrap(struct dif_config * conf) } if (api_bind(conf->dif_name) < 0) { - printf("Failed to bind the server api."); + LOG_ERR("Failed to bind the server AP instance."); return -1; } |