Latest commit
04811943b5 ("MINOR: haterm: enable h3 for TCP bindings")
produces a warning when SSL is not enabled due to the addition of
expose-experimental-directives. Let's condition it to the use of SSL.
}
hbuf_appendf(&gbuf, "global\n");
hbuf_appendf(&gbuf, "\ttune.memory.hot-size 3145728\n");
- hbuf_appendf(&gbuf, "\texpose-experimental-directives\n");
+ if (has_ssl)
+ hbuf_appendf(&gbuf, "\texpose-experimental-directives\n");
}
/* "global" section */