From 3307f7dde2ae8f5281d0782f7291a073c9b1cdc2 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 17 May 2023 09:06:32 +0200 Subject: [PATCH] imap-send: include strbuf.h We make liberal use of the strbuf API functions and types, but the inclusion of comes indirectly by including , which does not happen if you build with NO_CURL. Signed-off-by: Christian Hesse Helped-by: Taylor Blau Signed-off-by: Junio C Hamano --- imap-send.c | 1 + 1 file changed, 1 insertion(+) diff --git a/imap-send.c b/imap-send.c index a62424e90a4..7f5426177a1 100644 --- a/imap-send.c +++ b/imap-send.c @@ -29,6 +29,7 @@ #include "run-command.h" #include "parse-options.h" #include "setup.h" +#include "strbuf.h" #include "wrapper.h" #if defined(NO_OPENSSL) && !defined(HAVE_OPENSSL_CSPRNG) typedef void *SSL;