diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2020-04-16 14:15:34 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2020-04-22 17:56:17 -0400 |
commit | c0e139a60db68034e04362694290f7cf422eb924 (patch) | |
tree | e7c0d414ccf98961d4dc0db1a2512529336c2d58 /tests/data/Makefile.inc | |
parent | bffa1165357a5964c44794c253019375c2a80250 (diff) | |
download | curl-c0e139a60db68034e04362694290f7cf422eb924.tar.gz |
transfer: Switch PUT to GET/HEAD on 303 redirect
Prior to this change if there was a 303 reply to a PUT request then
the subsequent request to respond to that redirect would also be a PUT.
It was determined that was most likely incorrect based on the language
of the RFCs. Basically 303 means "see other" resource, which implies it
is most likely not the same resource, therefore we should not try to PUT
to that different resource.
Refer to the discussions in #5237 and #5248 for more information.
Fixes https://github.com/curl/curl/issues/5237
Closes https://github.com/curl/curl/pull/5248
Diffstat (limited to 'tests/data/Makefile.inc')
-rw-r--r-- | tests/data/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc index 425a0c02f..26faa954f 100644 --- a/tests/data/Makefile.inc +++ b/tests/data/Makefile.inc @@ -178,7 +178,7 @@ test1450 test1451 test1452 test1453 test1454 test1455 test1456 test1457 \ test1458 test1459 test1500 test1501 test1502 test1503 test1504 test1505 \ test1506 test1507 test1508 test1509 test1510 test1511 test1512 test1513 \ test1514 test1515 test1516 test1517 test1518 test1519 test1520 test1521 \ -test1522 test1523 \ +test1522 test1523 test1524 \ \ test1525 test1526 test1527 test1528 test1529 test1530 test1531 test1532 \ test1533 test1534 test1535 test1536 test1537 test1538 \ |