diff options
-rw-r--r-- | Source/charon/thread_pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/charon/thread_pool.c b/Source/charon/thread_pool.c index 3115e1588..d023d0a08 100644 --- a/Source/charon/thread_pool.c +++ b/Source/charon/thread_pool.c @@ -32,7 +32,7 @@ #include <pthread.h> -extern job_queue_t *job_queue; +extern job_queue_t *global_job_queue; /** @@ -61,7 +61,7 @@ static void job_processing(private_thread_pool_t *this) for (;;) { job_t *job; - job_queue->get(job_queue, &job); + global_job_queue->get(global_job_queue, &job); /* process them here */ |