Skip to content

Commit f861121

Browse files
committed
patch: Change option 'http-want-digest' default values to false
1 parent 575d930 commit f861121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

patch/0004-option-add-option-to-disable-want-digest-header.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Should close https://github.com/myfreeer/aria2-build-msys2/issues/10
1515
using the Digest response header
1616

1717
Possible Values: true, false
18-
Default: true
18+
Default: false
1919
Tags: #advanced, #http
2020
---
2121
src/AbstractProxyRequestCommand.cc | 1 +
@@ -62,7 +62,7 @@ index a058eb9..9ff615a 100644
6262
+ OptionHandler* op(
6363
+ new BooleanOptionHandler(PREF_HTTP_WANT_DIGEST,
6464
+ TEXT_HTTP_WANT_DIGEST,
65-
+ A2_V_TRUE, OptionHandler::OPT_ARG));
65+
+ A2_V_FALSE, OptionHandler::OPT_ARG));
6666
+ op->addTag(TAG_ADVANCED);
6767
+ op->addTag(TAG_HTTP);
6868
+ op->setInitialOption(true);

0 commit comments

Comments
 (0)