summaryrefslogtreecommitdiffstats
path: root/src/e1_input.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso2011-07-05 14:45:46 +0200
committerPablo Neira Ayuso2011-07-05 14:59:16 +0200
commitadd3ec84779ca1f9c7dd64aa8bb8641e8f15637a (patch)
tree939d9efeac7c3d28f184c8d7ded864ec6598f777 /src/e1_input.c
parentinclude: export lapd.h since openBSC needs it (diff)
downloadlibosmo-abis-add3ec84779ca1f9c7dd64aa8bb8641e8f15637a.tar.gz
libosmo-abis-add3ec84779ca1f9c7dd64aa8bb8641e8f15637a.tar.xz
libosmo-abis-add3ec84779ca1f9c7dd64aa8bb8641e8f15637a.zip
e1_input: change prototype of close hook in e1inp_driver
This patch changes `close' so we can make the e1inp_event inside this hook.
Diffstat (limited to 'src/e1_input.c')
-rw-r--r--src/e1_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/e1_input.c b/src/e1_input.c
index d11a3ce..77a6b3c 100644
--- a/src/e1_input.c
+++ b/src/e1_input.c
@@ -429,7 +429,7 @@ void e1inp_sign_link_destroy(struct e1inp_sign_link *link)
osmo_timer_del(&link->ts->sign.tx_timer);
if (link->ts->line->driver->close)
- link->ts->line->driver->close(link->ts);
+ link->ts->line->driver->close(link);
talloc_free(link);
}