From a59af64126954aceec09559c117c2641291bcc33 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 16 Jan 2012 09:54:09 +0100 Subject: ss7: Make the forwarding methods static --- src/ss7_application.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ss7_application.c b/src/ss7_application.c index 9d34752..701ec04 100644 --- a/src/ss7_application.c +++ b/src/ss7_application.c @@ -32,7 +32,7 @@ /* the SS7 dispatch... maybe as function pointers in the future */ -void forward_sccp_stp(struct mtp_link_set *set, struct msgb *_msg, int sls) +static void forward_sccp_stp(struct mtp_link_set *set, struct msgb *_msg, int sls) { struct mtp_link_set *other; other = set->app->route_src.set == set ? @@ -40,7 +40,7 @@ void forward_sccp_stp(struct mtp_link_set *set, struct msgb *_msg, int sls) mtp_link_set_submit_sccp_data(other, sls, _msg->l2h, msgb_l2len(_msg)); } -void forward_isup_stp(struct mtp_link_set *set, struct msgb *msg, int sls) +static void forward_isup_stp(struct mtp_link_set *set, struct msgb *msg, int sls) { struct mtp_link_set *other; other = set->app->route_src.set == set ? -- cgit v1.2.3