blob: 68190d3d4c170950e3db203c85e44dd0eb7d391e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
From 501091059ae9fc2877d621cdbc0fb3c5ece56dae Mon Sep 17 00:00:00 2001
From: Harald Sitter <sitter@kde.org>
Date: Thu, 20 Oct 2022 12:47:59 +0200
Subject: [PATCH] fix dav overwrite
somehow the function call got lost
---
src/ioslaves/http/http.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ioslaves/http/http.cpp b/src/ioslaves/http/http.cpp
index ec3c8809f..c54e568d2 100644
--- a/src/ioslaves/http/http.cpp
+++ b/src/ioslaves/http/http.cpp
@@ -5522,7 +5522,7 @@ bool HTTPProtocol::davDestinationExists()
m_request.cacheTag.policy = CC_Reload;
m_request.davData.depth = 0;
- (void)/* handling result via response codes */ (true);
+ (void)/* handling result via response codes */proceedUntilResponseContent(true);
if (!m_request.isKeepAlive) {
httpCloseConnection(); // close connection if server requested it.
--
GitLab
|