diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-12-01 09:53:53 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2021-12-01 14:32:06 +0100 |
commit | 0b35970ffb46075d19f1a65391dde8182f322ef0 (patch) | |
tree | 7ae7982c3c756be678b56c82d2d04d626c20f32e /ucb | |
parent | 7b3be7f6f3d800e2ad86f5a043e6e9b21ed4409f (diff) |
webdav-curl: just mask CURLE_QUIC_CONNECT_ERROR
... obviously we still need the throw...
Change-Id: Ia7960ce2296e196be600f6b9a8139bc261fd2159
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126170
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-curl/CurlSession.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav-curl/CurlSession.cxx b/ucb/source/ucp/webdav-curl/CurlSession.cxx index 5cde0fc027aa..59f372fa809b 100644 --- a/ucb/source/ucp/webdav-curl/CurlSession.cxx +++ b/ucb/source/ucp/webdav-curl/CurlSession.cxx @@ -948,10 +948,10 @@ auto CurlProcessor::ProcessRequestImpl( case CURLE_FAILED_INIT: #if CURL_AT_LEAST_VERSION(7, 69, 0) case CURLE_QUIC_CONNECT_ERROR: +#endif throw DAVException( DAVException::DAV_HTTP_CONNECT, ConnectionEndPointString(rSession.m_URI.GetHost(), rSession.m_URI.GetPort())); -#endif case CURLE_REMOTE_ACCESS_DENIED: case CURLE_LOGIN_DENIED: case CURLE_AUTH_ERROR: |