diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-21 10:59:13 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-21 10:59:13 +0000 |
commit | 24c2d259cb817821050f6d4296532a18b33f3da4 (patch) | |
tree | 662e09b34de3516cc819f108fbdef417d97322d6 | |
parent | 31332efad661680e171d9f287a8657cb01b54601 (diff) | |
download | strongswan-24c2d259cb817821050f6d4296532a18b33f3da4.tar.bz2 strongswan-24c2d259cb817821050f6d4296532a18b33f3da4.tar.xz |
- coding rule fix :-)
-rw-r--r-- | Source/charon/thread_pool.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/charon/thread_pool.c b/Source/charon/thread_pool.c index 7054ae88c..7439aed5f 100644 --- a/Source/charon/thread_pool.c +++ b/Source/charon/thread_pool.c @@ -157,7 +157,8 @@ static void job_processing(private_thread_pool_t *this) } status = global_ike_sa_manager->checkin(global_ike_sa_manager,ike_sa); - if (status != SUCCESS){ + if (status != SUCCESS) + { this->logger->log(this->logger, CONTROL|MORE, "thread %u: Checkin of IKE SA return errors", pthread_self()); } message->destroy(message); |