]> git.ipfire.org Git - thirdparty/git.git/commitdiff
imap-send: include strbuf.h
authorChristian Hesse <mail@eworm.de>
Wed, 17 May 2023 07:06:32 +0000 (09:06 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 17 May 2023 16:54:07 +0000 (09:54 -0700)
We make liberal use of the strbuf API functions and types, but the
inclusion of <strbuf.h> comes indirectly by including <http.h>,
which does not happen if you build with NO_CURL.

Signed-off-by: Christian Hesse <mail@eworm.de>
Helped-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
imap-send.c

index a62424e90a4d52e933749298529829cf267bb6b0..7f5426177a16e6c098f3197777fa14df0c5b8b27 100644 (file)
@@ -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;