summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/fmgr.c
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-12-06 14:01:32 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-12-06 14:01:32 +0100
commit38de1fd9af5a46c18ce5523b0c48e5f1c8679099 (patch)
tree705184cb605dc58e8315b5594ad0cab446f25339 /src/ipcpd/normal/fmgr.c
parent82ae7959d21c654fe9fd14de504f47d18b1ebcfc (diff)
downloadouroboros-38de1fd9af5a46c18ce5523b0c48e5f1c8679099.tar.gz
ouroboros-38de1fd9af5a46c18ce5523b0c48e5f1c8679099.zip
ipcpd: Change IPCP_RUNNING to IPCP_OPERATIONAL
Changes a state of the IPCP to a more correct terminology.
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 82163aef..ee4f0306 100644
--- a/src/ipcpd/normal/fmgr.c
+++ b/src/ipcpd/normal/fmgr.c
@@ -130,7 +130,7 @@ static void * fmgr_nm1_acceptor(void * o)
(void) o;
while (true) {
- ipcp_wait_state(IPCP_RUNNING, NULL);
+ ipcp_wait_state(IPCP_OPERATIONAL, NULL);
pthread_rwlock_rdlock(&ipcpi.state_lock);
@@ -420,7 +420,7 @@ int fmgr_np1_alloc(int fd,
pthread_rwlock_rdlock(&ipcpi.state_lock);
- if (ipcp_get_state() != IPCP_RUNNING) {
+ if (ipcp_get_state() != IPCP_OPERATIONAL) {
pthread_rwlock_unlock(&ipcpi.state_lock);
LOG_ERR("IPCP is not enrolled yet.");
return -1; /* -ENOTINIT */