diff options
| author | Tobias Brunner <tobias@strongswan.org> | 2010-07-15 14:49:41 +0200 |
|---|---|---|
| committer | Tobias Brunner <tobias@strongswan.org> | 2010-09-02 19:04:18 +0200 |
| commit | bb381e26c6d132fd0d29641cdb75335f52cae309 (patch) | |
| tree | 982649d5835e392b2a0f866ac0efc296f0f6e720 /src/libcharon/processing | |
| parent | e18556e9e9e5d870a9846efb1d0a1edd1638fafa (diff) | |
| download | strongswan-bb381e26c6d132fd0d29641cdb75335f52cae309.tar.bz2 strongswan-bb381e26c6d132fd0d29641cdb75335f52cae309.tar.xz | |
Refer to scheduler and processor via lib and not hydra.
Diffstat (limited to 'src/libcharon/processing')
| -rw-r--r-- | src/libcharon/processing/jobs/inactivity_job.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libcharon/processing/jobs/inactivity_job.c b/src/libcharon/processing/jobs/inactivity_job.c index 237c9d2b3..1371000eb 100644 --- a/src/libcharon/processing/jobs/inactivity_job.c +++ b/src/libcharon/processing/jobs/inactivity_job.c @@ -15,7 +15,6 @@ #include "inactivity_job.h" -#include <hydra.h> #include <daemon.h> typedef struct private_inactivity_job_t private_inactivity_job_t; @@ -88,7 +87,7 @@ METHOD(job_t, execute, void, } else { - hydra->scheduler->schedule_job(hydra->scheduler, + lib->scheduler->schedule_job(lib->scheduler, &this->public.job_interface, this->timeout - diff); rescheduled = TRUE; } |
