summaryrefslogtreecommitdiffstats
path: root/src/input/hsl.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso2011-07-05 15:29:23 +0200
committerPablo Neira Ayuso2011-07-05 15:29:23 +0200
commitdbd82fb5b1e0fc180a680094b80d6799bd28725a (patch)
tree8c0c3025f38ec51ed1096d33fc033afa3276600e /src/input/hsl.c
parente1_input: change prototype of close hook in e1inp_driver (diff)
downloadlibosmo-abis-dbd82fb5b1e0fc180a680094b80d6799bd28725a.tar.gz
libosmo-abis-dbd82fb5b1e0fc180a680094b80d6799bd28725a.tar.xz
libosmo-abis-dbd82fb5b1e0fc180a680094b80d6799bd28725a.zip
e1_input: change prototype of ->sign_link(...)
This patch removes the struct e1inp_sign_link parameter since this is already available in the msgb->dst field of the message.
Diffstat (limited to 'src/input/hsl.c')
-rw-r--r--src/input/hsl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/hsl.c b/src/input/hsl.c
index aa79cdf..d8eb8db 100644
--- a/src/input/hsl.c
+++ b/src/input/hsl.c
@@ -186,7 +186,7 @@ static int handle_ts1_read(struct osmo_fd *bfd)
"no action set for signalling messages.\n");
return -ENOENT;
}
- e1i_ts->line->ops->sign_link(msg, link);
+ e1i_ts->line->ops->sign_link(msg);
return ret;
}