summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/fmgr.c
diff options
context:
space:
mode:
authordimitri staessens <dimitri.staessens@intec.ugent.be>2016-12-02 10:27:09 +0000
committerdimitri staessens <dimitri.staessens@intec.ugent.be>2016-12-02 10:27:09 +0000
commitc39db00ac0bbed2ec1affa632e83cb52699baec3 (patch)
treee44729348ea0fde27351c9b1759f4dc135a5dba5 /src/ipcpd/normal/fmgr.c
parent113e8f65b6294a46d472b99e39fc9f6d993e808b (diff)
parentb99037eae6a7af058cdb56f316d9c8e4ca603d86 (diff)
downloadouroboros-c39db00ac0bbed2ec1affa632e83cb52699baec3.tar.gz
ouroboros-c39db00ac0bbed2ec1affa632e83cb52699baec3.zip
Merged in sandervrijders/ouroboros/be-addr-pol (pull request #312)
Be addr pol
Diffstat (limited to 'src/ipcpd/normal/fmgr.c')
-rw-r--r--src/ipcpd/normal/fmgr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipcpd/normal/fmgr.c b/src/ipcpd/normal/fmgr.c
index 607308c0..35217283 100644
--- a/src/ipcpd/normal/fmgr.c
+++ b/src/ipcpd/normal/fmgr.c
@@ -127,7 +127,7 @@ static void * fmgr_nm1_acceptor(void * o)
(void) o;
while (true) {
- ipcp_wait_state(IPCP_ENROLLED, NULL);
+ ipcp_wait_state(IPCP_RUNNING, NULL);
pthread_rwlock_rdlock(&ipcpi.state_lock);
@@ -412,7 +412,7 @@ int fmgr_np1_alloc(int fd,
pthread_rwlock_rdlock(&ipcpi.state_lock);
- if (ipcp_get_state() != IPCP_ENROLLED) {
+ if (ipcp_get_state() != IPCP_RUNNING) {
pthread_rwlock_unlock(&ipcpi.state_lock);
LOG_ERR("IPCP is not enrolled yet.");
return -1; /* -ENOTINIT */