aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/handover_fsm.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-08-29 23:30:29 +0000
committerNeels Hofmeyr <neels@hofmeyr.de>2020-08-30 00:19:42 +0000
commit5a7d01792ce09cd4ab2998c51c9830ca336321e0 (patch)
treed12b6c2d9c3dca3c95f3e65b4759c50732cabc44 /src/osmo-bsc/handover_fsm.c
parent8a3b507dea5e4568623abf2d5c925d17da296b5f (diff)
ho counters: count invalid target cell as 'error', not 'no_channel'
Diffstat (limited to 'src/osmo-bsc/handover_fsm.c')
-rw-r--r--src/osmo-bsc/handover_fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/handover_fsm.c b/src/osmo-bsc/handover_fsm.c
index bb5dcb14d..4b54bb7ce 100644
--- a/src/osmo-bsc/handover_fsm.c
+++ b/src/osmo-bsc/handover_fsm.c
@@ -331,7 +331,7 @@ void handover_start(struct handover_out_req *req)
if (find_handover_target_cell(&local_target_cell, &remote_target_cell,
conn, search_for, true)) {
- handover_end(conn, HO_RESULT_FAIL_NO_CHANNEL);
+ handover_end(conn, HO_RESULT_ERROR);
return;
}