From f77a158c87cc6df9845d628156f93a5932a31532 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Thu, 10 Jan 2019 10:00:08 +0100 Subject: [PATCH] MINOR: mux-h1: make the mux_h1_ops struct static It was needlessly exported while it's only used inside the mux. --- src/mux_h1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mux_h1.c b/src/mux_h1.c index d4d3eb8de..17674c722 100644 --- a/src/mux_h1.c +++ b/src/mux_h1.c @@ -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,