aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/ipaccess.c
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 /src/input/ipaccess.c
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 'src/input/ipaccess.c')
-rw-r--r--src/input/ipaccess.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 0192b2b..ec4b231 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -386,7 +386,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;
}
@@ -782,7 +782,7 @@ static int ipaccess_bts_cb(struct ipa_client_link *link, struct msgb *msg)
"no action set for signalling messages.\n");
return -ENOENT;
}
- link->line->ops->sign_link(msg, sign_link);
+ link->line->ops->sign_link(msg);
return 0;
}