This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
dexter gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/4409
reset: fix illegal FSM name
The name of the state machine that controls the reset
contains a whitespace. This is not allowed.
Replace whitespace with an underscore.
Change-Id: I44b8e0935f9d249903a30852ca1cdcf335219ba6
---
M src/libcommon-cs/a_reset.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/09/4409/1
diff --git a/src/libcommon-cs/a_reset.c b/src/libcommon-cs/a_reset.c
index c40bc41..612a028 100644
--- a/src/libcommon-cs/a_reset.c
+++ b/src/libcommon-cs/a_reset.c
@@ -124,7 +124,7 @@
/* State machine definition */
static struct osmo_fsm fsm = {
- .name = "FSM RESET",
+ .name = "FSM_RESET",
.states = fsm_states,
.num_states = ARRAY_SIZE(fsm_states),
.log_subsys = DMSC,
--
To view, visit https://gerrit.osmocom.org/4409
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I44b8e0935f9d249903a30852ca1cdcf335219ba6
Gerrit-PatchSet: 1
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Owner: dexter <pmaier at sysmocom.de>