[client] main: fix failure to check KVMFR udata at connect

This commit is contained in:
Geoffrey McRae 2022-02-08 15:49:48 +11:00
parent 3890c72159
commit 1cfbcba813

View File

@ -1264,11 +1264,12 @@ restart:
while(g_state.state == APP_STATE_RUNNING) while(g_state.state == APP_STATE_RUNNING)
{ {
if ((status = lgmpClientSessionInit(g_state.lgmp, &udataSize, (uint8_t **)&udata)) == LGMP_OK) status = lgmpClientSessionInit(g_state.lgmp, &udataSize, (uint8_t **)&udata);
break;
switch(status) switch(status)
{ {
case LGMP_OK:
break;
case LGMP_ERR_INVALID_VERSION: case LGMP_ERR_INVALID_VERSION:
{ {
reportBadVersion(); reportBadVersion();