aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libstrongswan/utils/linked_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/utils/linked_list.c b/src/libstrongswan/utils/linked_list.c
index 4aea69034..daf07e210 100644
--- a/src/libstrongswan/utils/linked_list.c
+++ b/src/libstrongswan/utils/linked_list.c
@@ -305,7 +305,7 @@ static status_t replace(private_iterator_t *this, void **old_item, void *new_ite
}
if (old_item != NULL)
{
- *old_item = this->hook(this->current->value);
+ *old_item = this->current->value;
}
this->current->value = new_item;