aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-10-21 04:12:29 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2012-10-21 04:12:29 +0200
commit0f1f41411f4cc4c0dda2946b4077265e9e8d0a37 (patch)
tree6c4d004a280b481a4d241cccb4c137837af9db72
parent4aa540ae27249681c11997acd1a82370f11d8c27 (diff)
osmux: fix missing data set in osmux_tx_sched
-rw-r--r--src/osmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmux.c b/src/osmux.c
index 206cdd0..978b48a 100644
--- a/src/osmux.c
+++ b/src/osmux.c
@@ -491,7 +491,7 @@ osmux_tx_sched(struct llist_head *list,
LOGP(DLMIB, LOGL_DEBUG, "scheduled transmision in %lu.%6lu "
"seconds, msg=%p\n", when.tv_sec, when.tv_usec, cur);
- osmux_tx(cur, &when, tx_cb, NULL);
+ osmux_tx(cur, &when, tx_cb, data);
timeradd(&when, &delta, &when);
llist_del(&cur->list);
}