mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-11 01:41:49 -04:00
MINOR: mux-h1: make the mux_h1_ops struct static
It was needlessly exported while it's only used inside the mux.
This commit is contained in:
parent
6975296494
commit
f77a158c87
1 changed files with 1 additions and 1 deletions
|
|
@ -2337,7 +2337,7 @@ static void h1_show_fd(struct buffer *msg, struct connection *conn)
|
|||
/****************************************/
|
||||
|
||||
/* The mux operations */
|
||||
const struct mux_ops mux_h1_ops = {
|
||||
static const struct mux_ops mux_h1_ops = {
|
||||
.init = h1_init,
|
||||
.wake = h1_wake,
|
||||
.attach = h1_attach,
|
||||
|
|
|
|||
Loading…
Reference in a new issue