diff options
Diffstat (limited to 'Source/charon/sa/ike_sa_manager.c')
-rw-r--r-- | Source/charon/sa/ike_sa_manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/sa/ike_sa_manager.c b/Source/charon/sa/ike_sa_manager.c index 55fd0fcd6..669bcec16 100644 --- a/Source/charon/sa/ike_sa_manager.c +++ b/Source/charon/sa/ike_sa_manager.c @@ -335,7 +335,7 @@ static status_t delete_entry(private_ike_sa_manager_t *this, ike_sa_entry_t *ent if (current == entry) { this->logger->log(this->logger,CONTROL | MOST,"Found entry by pointer. Going to delete it."); - list->remove(list, iterator); + iterator->remove(iterator); entry->destroy(entry); status = SUCCESS; break; |