0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-21 17:21:53 +00:00

fixup! fixup! fixup! fixup! Flock: now linker errors

This commit is contained in:
Maria Matejka 2024-10-22 16:27:54 +02:00
parent f7e417a86a
commit 5a9ab39ee8

View File

@ -219,16 +219,10 @@ hcs_parse(struct cbor_channel *cch, enum cbor_parse_result res)
htx->major_state = ~0ULL;
return CPR_BLOCK_END;
case 1:
case 3:
htx->major_state = 0;
return CPR_MORE;
case 5:
/* Finalize the command to exec in hypervisor */
CBOR_PARSER_ERROR("NOT IMPLEMENTED YET");
htx->major_state = 1;
return CPR_MORE;
case 501:
switch (hpc->cfg.cf.type)
{
@ -238,7 +232,7 @@ hcs_parse(struct cbor_channel *cch, enum cbor_parse_result res)
default:
CBOR_PARSER_ERROR("Unknown machine type: %d", hpc->cfg.cf.type);
}
htx->major_state = 1;
htx->major_state = 3;
return CPR_MORE;
case 601:
@ -250,7 +244,7 @@ hcs_parse(struct cbor_channel *cch, enum cbor_parse_result res)
*/
hypervisor_container_shutdown(&hpc->cch, &hpc->cfg.container);
htx->major_state = 1;
htx->major_state = 3;
return CPR_MORE;
default: