aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-11-21 10:59:13 +0000
committerJan Hutter <jhutter@hsr.ch>2005-11-21 10:59:13 +0000
commit24c2d259cb817821050f6d4296532a18b33f3da4 (patch)
tree662e09b34de3516cc819f108fbdef417d97322d6
parent31332efad661680e171d9f287a8657cb01b54601 (diff)
downloadstrongswan-24c2d259cb817821050f6d4296532a18b33f3da4.tar.bz2
strongswan-24c2d259cb817821050f6d4296532a18b33f3da4.tar.xz
- coding rule fix :-)
-rw-r--r--Source/charon/thread_pool.c3
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);