diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-17 13:34:10 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-17 13:34:10 +0000 |
commit | f0c83c23a3a4bee1d5703274904a956c1eb755bb (patch) | |
tree | dd67b4247f0307e94b295340b622e84f1cd81d2f /Source/charon/queues | |
parent | 1a2e706beebcc9a84cb32401ef0fa51ae48b8ff0 (diff) | |
download | strongswan-f0c83c23a3a4bee1d5703274904a956c1eb755bb.tar.bz2 strongswan-f0c83c23a3a4bee1d5703274904a956c1eb755bb.tar.xz |
- iterator insertion
Diffstat (limited to 'Source/charon/queues')
-rw-r--r-- | Source/charon/queues/event_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/queues/event_queue.c b/Source/charon/queues/event_queue.c index 26aa27070..606578ab2 100644 --- a/Source/charon/queues/event_queue.c +++ b/Source/charon/queues/event_queue.c @@ -284,7 +284,7 @@ static status_t add_absolute(private_event_queue_t *this, job_t *job, timeval_t if (time_difference(&(event->time), &(current_event->time)) <= 0) { /* my event has to be fired before the current event in list */ - status = this->list->insert_before(this->list,iterator,event); + status = iterator->insert_before(iterator,event); break; } } |