strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ac5a0d
)
fixed iterator regression introduced in [4577]
author
Martin Willi
<martin@strongswan.org>
Wed, 5 Nov 2008 11:55:17 +0000
(11:55 -0000)
committer
Martin Willi
<martin@strongswan.org>
Wed, 5 Nov 2008 11:55:17 +0000
(11:55 -0000)
src/libstrongswan/utils/linked_list.c
patch
|
blob
|
history
diff --git
a/src/libstrongswan/utils/linked_list.c
b/src/libstrongswan/utils/linked_list.c
index
585f284
..
45d17c8
100644
(file)
--- a/
src/libstrongswan/utils/linked_list.c
+++ b/
src/libstrongswan/utils/linked_list.c
@@
-209,6
+209,7
@@
static bool iterate(private_iterator_t *this, void** value)
{
return FALSE;
}
+ *value = this->current->value;
return TRUE;
}