Skip to content

Commit 40694d9

Browse files
committed
lib/curl/Setup: remove the CURLOPT_HTTPAUTH=CURLAUTH_ANY option
This reverts commit 3f3e073 which had been obsoleted by 638dfc3 Closes #2530
1 parent 633d8d2 commit 40694d9

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
ver 0.24.13 (not yet released)
22
* configuration
33
- add range checks to number parser
4+
* storage
5+
- curl: eliminate auth probe requests
46
* tags:
57
- id3: limit ID3 tags to 4 MB
68
* output

src/lib/curl/Setup.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Setup(CurlEasy &easy)
1717
easy.SetNoProgress();
1818
easy.SetNoSignal();
1919
easy.SetConnectTimeout(std::chrono::seconds{10});
20-
easy.SetOption(CURLOPT_HTTPAUTH, (long) CURLAUTH_ANY);
2120
}
2221

2322
} // namespace Curl

0 commit comments

Comments
 (0)