aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2009-12-24 13:27:02 +0100
committerHarald Welte <laforge@netfilter.org>2009-12-24 13:27:02 +0100
commite98d4278d0cf87c8e2345900d612bbbb607635a0 (patch)
treebd769839de21293204f8d014590ef8bb6beb942e /openbsc
parentda956931fab20413f658961d6aab798336acf2d7 (diff)
[handover] CRCX ACK without HO reference is normal, not an error
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/handover_logic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/handover_logic.c b/openbsc/src/handover_logic.c
index 5297ab6ca..20eeb66ce 100644
--- a/openbsc/src/handover_logic.c
+++ b/openbsc/src/handover_logic.c
@@ -280,8 +280,8 @@ static int ho_ipac_crcx_ack(struct gsm_lchan *new_lchan)
ho = bsc_ho_by_new_lchan(new_lchan);
if (!ho) {
- LOGP(DHO, LOGL_ERROR, "unable to find HO record\n");
- return -ENODEV;
+ /* it is perfectly normal, we have CRCX even in non-HO cases */
+ return 0;
}
if (ipacc_rtp_direct) {