[netfilter-cvslog] r6401 - branches/ulog/ulogd2/src

laforge at netfilter.org laforge at netfilter.org
Thu Jan 12 13:20:49 CET 2006


Author: laforge at netfilter.org
Date: 2006-01-12 13:20:49 +0100 (Thu, 12 Jan 2006)
New Revision: 6401

Modified:
   branches/ulog/ulogd2/src/timer.c
Log:
timer.c: llist_del() fixup (Christian Hentschel);


Modified: branches/ulog/ulogd2/src/timer.c
===================================================================
--- branches/ulog/ulogd2/src/timer.c	2006-01-12 12:19:50 UTC (rev 6400)
+++ branches/ulog/ulogd2/src/timer.c	2006-01-12 12:20:49 UTC (rev 6401)
@@ -127,7 +127,7 @@
 	llist_for_each_entry_safe(cur, cur2, &ulogd_timers, list) {
 		if (tv_later(&cur->expires, &now)) {
 			/* fist delete it from the list of timers */
-			llist_del(cur);
+			llist_del(&cur->list);
 			/* then call.  called function can re-add it */
 			(cur->cb)(cur->data);
 		}




More information about the netfilter-cvslog mailing list