summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2023-05-17 09:06:32 +0200
committerJunio C Hamano <gitster@pobox.com>2023-05-17 09:54:07 -0700
commit3307f7dde2ae8f5281d0782f7291a073c9b1cdc2 (patch)
tree2e2f6123d39a8664dd6c2d862f3e563fc873d4ab
parent0df2c180904f6b709766f9c24669a9d01543f915 (diff)
downloadgit-3307f7dde2ae8f5281d0782f7291a073c9b1cdc2.tar.gz
imap-send: include strbuf.h
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>
-rw-r--r--imap-send.c1
1 files changed, 1 insertions, 0 deletions
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;