summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-01-11 11:00:50 -0800
committerTim Prouty <tprouty@samba.org>2009-01-11 11:00:50 -0800
commitcd5039b18843485074bb8e502434b518265d10e9 (patch)
tree71ac8059d38bf324db8e683897f37cf5c979f818 /lib/tevent/tevent.c
parentde4812ea1c9ed9ca69f949411fbdb0c8a0e66eef (diff)
downloadsamba-cd5039b18843485074bb8e502434b518265d10e9.tar.gz
samba-cd5039b18843485074bb8e502434b518265d10e9.tar.bz2
samba-cd5039b18843485074bb8e502434b518265d10e9.zip
tevent: Fix build break
Diffstat (limited to 'lib/tevent/tevent.c')
-rw-r--r--lib/tevent/tevent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c
index fa8219e234..cf178028fd 100644
--- a/lib/tevent/tevent.c
+++ b/lib/tevent/tevent.c
@@ -157,7 +157,7 @@ int tevent_common_context_destructor(struct tevent_context *ev)
te = ev->timer_events;
while (te) {
te->event_ctx = NULL;
- DLIST_REMOVE(te->timer_events, te);
+ DLIST_REMOVE(ev->timer_events, te);
te = ev->timer_events;
}