From: Christian Hesse Date: Wed, 17 May 2023 07:06:32 +0000 (+0200) Subject: imap-send: include strbuf.h X-Git-Tag: v2.41.0-rc1~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3307f7dde2;p=thirdparty%2Fgit.git 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 --- diff --git a/imap-send.c b/imap-send.c index a62424e90a..7f5426177a 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;