Fix for the lcls FSM
diff --git a/src/osmo-bsc/osmo_bsc_lcls.c b/src/osmo-bsc/osmo_bsc_lcls.c
index eab0be4..5a1a62f 100644
--- a/src/osmo-bsc/osmo_bsc_lcls.c
+++ b/src/osmo-bsc/osmo_bsc_lcls.c
@@ -522,6 +522,8 @@
 		if (lcls_enable_possible(conn)) {
 			osmo_fsm_inst_state_chg(fi, ST_LOCALLY_SWITCHED, 0, 0);
 			osmo_fsm_inst_dispatch(conn->lcls.other->lcls.fi, LCLS_EV_OTHER_ENABLED, conn);
+		} else {
+			osmo_fsm_inst_state_chg(fi, ST_NOT_YET_LS, 0, 0);
 		}
 		break;
 	case LCLS_EV_OTHER_ENABLED:
@@ -546,6 +548,8 @@
 		/* Send LCLS-NOTIFY to inform MSC */
 		lcls_send_notify(conn);
 		break;
+	case LCLS_EV_APPLY_CFG_CSC:
+		break;
 	default:
 		OSMO_ASSERT(0);
 		break;