diff options
author | Christian Hesse <mail@eworm.de> | 2023-05-17 09:06:32 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-05-17 18:54:07 +0200 |
commit | 3307f7dde2ae8f5281d0782f7291a073c9b1cdc2 (patch) | |
tree | 2e2f6123d39a8664dd6c2d862f3e563fc873d4ab /imap-send.c | |
parent | Git 2.41-rc0 (diff) | |
download | git-3307f7dde2ae8f5281d0782f7291a073c9b1cdc2.tar.xz git-3307f7dde2ae8f5281d0782f7291a073c9b1cdc2.zip |
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>
Diffstat (limited to '')
-rw-r--r-- | imap-send.c | 1 |
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; |