aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-08-06 18:41:49 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2012-08-06 21:04:25 +0200
commitf366c924e22f95149b109d79270ddcc274459186 (patch)
tree7d08ef2e0f84024746ce108499ecd7bd613b051b /tests
parent6d72b4a7294fd9546d9886bb575a61ef12efa479 (diff)
osmux: store internal batching information in struct osmux_in_handle
The layout is not provided, as it is internal. Thus, we don't allocate the internal batching information in BSS anymore.
Diffstat (limited to 'tests')
-rw-r--r--tests/osmo-pcap-test/osmux_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/osmo-pcap-test/osmux_test.c b/tests/osmo-pcap-test/osmux_test.c
index 1c936b7..8d62ffa 100644
--- a/tests/osmo-pcap-test/osmux_test.c
+++ b/tests/osmo-pcap-test/osmux_test.c
@@ -77,7 +77,7 @@ static int pcap_test_run(struct msgb *msg)
{
int ret;
- while ((ret = osmux_xfrm_input(msg)) > 1) {
+ while ((ret = osmux_xfrm_input(&h_input, msg)) > 1) {
/* batch full, deliver it */
osmux_xfrm_input_deliver(&h_input);
}