osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-e1d/+/28575 )
Change subject: octoi_srv_fsm: fix implicit fall-through ......................................................................
octoi_srv_fsm: fix implicit fall-through
Found by gcc (Debian 10.2.1-6) 10.2.1 20210110, which fails the build with --enable-werror because of this.
Change-Id: Ib717df376a4b414f787168c2c632f04f0c51271b --- M src/octoi/octoi_srv_fsm.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve fixeria: Looks good to me, but someone else must approve osmith: Looks good to me, approved
diff --git a/src/octoi/octoi_srv_fsm.c b/src/octoi/octoi_srv_fsm.c index 469436e..cda0e52 100644 --- a/src/octoi/octoi_srv_fsm.c +++ b/src/octoi/octoi_srv_fsm.c @@ -131,6 +131,7 @@ case ACCOUNT_MODE_NONE: LOGPFSML(fi, LOGL_NOTICE, "User account %s has mode 'none', rejecting\n", acc->user_id); + /* fall through */ default: st->rej_str = "Unsupported mode for user"; goto reject;