aboutsummaryrefslogtreecommitdiffstats
path: root/src/abis_rsl.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2008-12-30 14:57:59 +0000
committerHarald Welte <laforge@gnumonks.org>2008-12-30 14:57:59 +0000
commit817f3c8699d447b618d2b4348045ef0f84f50950 (patch)
treef3871d42dedb17de7877845e94e41068504a659f /src/abis_rsl.c
parente2a728d44b49b5ee993a1b3d0ba6aad28f1e1ecb (diff)
add missing return statement
Diffstat (limited to 'src/abis_rsl.c')
-rw-r--r--src/abis_rsl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/abis_rsl.c b/src/abis_rsl.c
index 5342a9577..eb732290e 100644
--- a/src/abis_rsl.c
+++ b/src/abis_rsl.c
@@ -471,7 +471,6 @@ static int rsl_rx_chan_act_ack(struct msgb *msg)
if (network->channel_response)
(*network->channel_response)(lchan, 1);
-
return 0;
}
@@ -655,6 +654,8 @@ static int rsl_rx_chan_rqd(struct msgb *msg)
/* inform the bsc that a channel has been allocated */
if (bts->network->channel_allocated)
(*bts->network->channel_allocated)(lchan, chreq_reason);
+
+ return ret;
}
static int abis_rsl_rx_cchan(struct msgb *msg)