summaryrefslogtreecommitdiff
path: root/src/ipcpd/ipcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipcpd/ipcp.c')
-rw-r--r--src/ipcpd/ipcp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ipcpd/ipcp.c b/src/ipcpd/ipcp.c
index e44fafe2..2e4c3fca 100644
--- a/src/ipcpd/ipcp.c
+++ b/src/ipcpd/ipcp.c
@@ -334,6 +334,9 @@ int ipcp_init(enum ipcp_type type, struct ipcp_ops * ops)
int ipcp_boot()
{
int t;
+
+ ipcp_set_state(IPCP_INIT);
+
for (t = 0; t < IPCPD_THREADPOOL_SIZE; ++t) {
if (pthread_create(&ipcpi.threadpool[t], NULL,
ipcp_main_loop, NULL)) {
@@ -346,8 +349,6 @@ int ipcp_boot()
}
}
- ipcpi.state = IPCP_INIT;
-
return 0;
}