diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-11 13:12:23 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-11 13:12:23 +0000 |
commit | 566bbcd122a2330e2d23075e6a6a80c82f819df8 (patch) | |
tree | 8d9ba4715f33044d64d2c3242f36ec227a53513f /Source/charon/thread_pool.c | |
parent | 55497527cefeea9ef230887bb1909b7703f8b5ec (diff) | |
download | strongswan-566bbcd122a2330e2d23075e6a6a80c82f819df8.tar.bz2 strongswan-566bbcd122a2330e2d23075e6a6a80c82f819df8.tar.xz |
- renamed logger_manager method get_logger to create_logger
Diffstat (limited to 'Source/charon/thread_pool.c')
-rw-r--r-- | Source/charon/thread_pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/thread_pool.c b/Source/charon/thread_pool.c index 532587ee7..c73317abd 100644 --- a/Source/charon/thread_pool.c +++ b/Source/charon/thread_pool.c @@ -143,7 +143,7 @@ thread_pool_t *thread_pool_create(size_t pool_size) allocator_free(this); return NULL; } - global_logger_manager->get_logger(global_logger_manager,THREAD_POOL,&(this->logger),NULL); + this->logger = global_logger_manager->create_logger(global_logger_manager,THREAD_POOL,NULL); if (this->threads == NULL) { allocator_free(this); |