aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2011-07-05 15:29:23 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2011-07-05 15:29:23 +0200
commitdbd82fb5b1e0fc180a680094b80d6799bd28725a (patch)
tree8c0c3025f38ec51ed1096d33fc033afa3276600e /tests
parentadd3ec84779ca1f9c7dd64aa8bb8641e8f15637a (diff)
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 'tests')
-rw-r--r--tests/e1inp_ipa_bsc_test.c2
-rw-r--r--tests/e1inp_ipa_bts_test.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/e1inp_ipa_bsc_test.c b/tests/e1inp_ipa_bsc_test.c
index a65b375..0d04d59 100644
--- a/tests/e1inp_ipa_bsc_test.c
+++ b/tests/e1inp_ipa_bsc_test.c
@@ -55,7 +55,7 @@ static void sign_link_down(struct e1inp_line *line)
e1inp_sign_link_destroy(rsl_sign_link);
}
-static int sign_link(struct msgb *msg, struct e1inp_sign_link *link)
+static int sign_link(struct msgb *msg)
{
LOGP(DBSCTEST, LOGL_NOTICE, "OML/RSL message received.\n");
return 0;
diff --git a/tests/e1inp_ipa_bts_test.c b/tests/e1inp_ipa_bts_test.c
index 8ba49c5..bd67a83 100644
--- a/tests/e1inp_ipa_bts_test.c
+++ b/tests/e1inp_ipa_bts_test.c
@@ -77,7 +77,7 @@ static void sign_link_down(struct e1inp_line *line)
e1inp_sign_link_destroy(rsl_sign_link);
}
-static int sign_link(struct msgb *msg, struct e1inp_sign_link *link)
+static int sign_link(struct msgb *msg)
{
LOGP(DBTSTEST, LOGL_NOTICE, "OML/RSL message received.\n");
return 0;