From 5936ff3772aa0236e88d4333308819aad2770d44 Mon Sep 17 00:00:00 2001 From: Leonardo Alminana Date: Wed, 14 Aug 2024 22:17:29 +0200 Subject: [PATCH] network: fixed a wrong data type used for an option Signed-off-by: Leonardo Alminana --- include/fluent-bit/flb_network.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fluent-bit/flb_network.h b/include/fluent-bit/flb_network.h index 4fb741527ec..900ec691cf4 100644 --- a/include/fluent-bit/flb_network.h +++ b/include/fluent-bit/flb_network.h @@ -40,7 +40,7 @@ /* Network connection setup */ struct flb_net_setup { /* enable/disable keepalive support */ - char keepalive; + int keepalive; /* max time in seconds that a keepalive connection can be idle */ int keepalive_idle_timeout;