mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-01 22:48:25 +00:00
BUILD: ssl/crt-list: use __fallthrough in cli_io_handler_add_crtlist()
This avoids 3 build warnings when preprocessing happens before compiling with gcc >= 7.
This commit is contained in:
parent
5c8b52f80a
commit
aef8448b58
@ -1088,7 +1088,7 @@ static int cli_io_handler_add_crtlist(struct appctx *appctx)
|
|||||||
if (applet_putchk(appctx, &trash) == -1)
|
if (applet_putchk(appctx, &trash) == -1)
|
||||||
goto yield;
|
goto yield;
|
||||||
ctx->state = ADDCRT_ST_GEN;
|
ctx->state = ADDCRT_ST_GEN;
|
||||||
/* fallthrough */
|
__fallthrough;
|
||||||
case ADDCRT_ST_GEN:
|
case ADDCRT_ST_GEN:
|
||||||
bind_conf_node = ctx->bind_conf_node; /* get the previous ptr from the yield */
|
bind_conf_node = ctx->bind_conf_node; /* get the previous ptr from the yield */
|
||||||
if (bind_conf_node == NULL)
|
if (bind_conf_node == NULL)
|
||||||
@ -1136,7 +1136,7 @@ static int cli_io_handler_add_crtlist(struct appctx *appctx)
|
|||||||
new_inst->crtlist_entry = entry;
|
new_inst->crtlist_entry = entry;
|
||||||
}
|
}
|
||||||
ctx->state = ADDCRT_ST_INSERT;
|
ctx->state = ADDCRT_ST_INSERT;
|
||||||
/* fallthrough */
|
__fallthrough;
|
||||||
case ADDCRT_ST_INSERT:
|
case ADDCRT_ST_INSERT:
|
||||||
/* the insertion is called for every instance of the store, not
|
/* the insertion is called for every instance of the store, not
|
||||||
* only the one we generated.
|
* only the one we generated.
|
||||||
@ -1154,7 +1154,7 @@ static int cli_io_handler_add_crtlist(struct appctx *appctx)
|
|||||||
entry->linenum = ++crtlist->linecount;
|
entry->linenum = ++crtlist->linecount;
|
||||||
ctx->entry = NULL;
|
ctx->entry = NULL;
|
||||||
ctx->state = ADDCRT_ST_SUCCESS;
|
ctx->state = ADDCRT_ST_SUCCESS;
|
||||||
/* fallthrough */
|
__fallthrough;
|
||||||
case ADDCRT_ST_SUCCESS:
|
case ADDCRT_ST_SUCCESS:
|
||||||
chunk_reset(&trash);
|
chunk_reset(&trash);
|
||||||
chunk_appendf(&trash, "\n");
|
chunk_appendf(&trash, "\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user