diff options
Diffstat (limited to 'src/ipcpd')
| -rw-r--r-- | src/ipcpd/normal/connmgr.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/ipcpd/normal/connmgr.c b/src/ipcpd/normal/connmgr.c index b7ba90d9..a83d71c3 100644 --- a/src/ipcpd/normal/connmgr.c +++ b/src/ipcpd/normal/connmgr.c @@ -120,7 +120,12 @@ static int add_ae_conn(const char *       name,                  return -1;          } +        pthread_mutex_lock(&ae->conn_lock); +          list_add(&ae_conn->next, &ae->conn_list); +        pthread_cond_signal(&ae->conn_cond); + +        pthread_mutex_unlock(&ae->conn_lock);          pthread_rwlock_unlock(&connmgr.aes_lock); | 
