From 25cf824edc5e7b548824b00abb91922243b5b6b5 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 6 Jul 2012 14:21:55 +0200 Subject: [PATCH] handover: Not finding a HO record on CHAN ACT NACK is not an error ... it might well a completely non-ho-related establishment --- openbsc/src/libbsc/handover_logic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbsc/src/libbsc/handover_logic.c b/openbsc/src/libbsc/handover_logic.c index c469e7c62..711c26006 100644 --- a/openbsc/src/libbsc/handover_logic.c +++ b/openbsc/src/libbsc/handover_logic.c @@ -229,7 +229,7 @@ static int ho_chan_activ_nack(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"); + LOGP(DHO, LOGL_INFO, "ACT NACK: unable to find HO record\n"); return -ENODEV; }