summaryrefslogtreecommitdiff
path: root/libcurl
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-22 17:03:17 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-22 17:03:17 -0400
commit2c81be72eef5363736cf1892646c74a3311ee4c1 (patch)
tree3894ba7e10c78750c195381a861da5e8166a6bfd /libcurl
parentMerge branch 'b11.20' into 'master' (diff)
downloadFreeFileSync-2c81be72eef5363736cf1892646c74a3311ee4c1.tar.gz
FreeFileSync-2c81be72eef5363736cf1892646c74a3311ee4c1.tar.bz2
FreeFileSync-2c81be72eef5363736cf1892646c74a3311ee4c1.zip
add upstream 11.21b11.21
Diffstat (limited to 'libcurl')
-rw-r--r--libcurl/curl_wrap.cpp1
-rw-r--r--libcurl/curl_wrap.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/libcurl/curl_wrap.cpp b/libcurl/curl_wrap.cpp
index 1dc523b9..33723d9e 100644
--- a/libcurl/curl_wrap.cpp
+++ b/libcurl/curl_wrap.cpp
@@ -9,6 +9,7 @@
#include <zen/http.h>
#include <zen/open_ssl.h>
#include <zen/thread.h>
+#include <zen/file_path.h>
#include <fcntl.h>
using namespace zen;
diff --git a/libcurl/curl_wrap.h b/libcurl/curl_wrap.h
index 4c41ade4..35ee54ba 100644
--- a/libcurl/curl_wrap.h
+++ b/libcurl/curl_wrap.h
@@ -11,7 +11,6 @@
#include <span>
#include <functional>
#include <zen/sys_error.h>
-#include <zen/zstring.h>
//-------------------------------------------------
bgstack15