summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpoptions.cpp
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2015-06-01 16:54:53 -0700
committerRider Linden <rider@lindenlab.com>2015-06-01 16:54:53 -0700
commit68da6fa846fee1e3c5fb478945ef54f83a86aacd (patch)
tree6567411b4ba3cdc40c1824cabd5c1d4fa71a039b /indra/llcorehttp/httpoptions.cpp
parentd41ad508bf10643c3bfeb70dd8f39e187d618a02 (diff)
Set follow redirects so that the default is the same when no options are are specified and when follow redirects is not specified on the options object.
Diffstat (limited to 'indra/llcorehttp/httpoptions.cpp')
-rwxr-xr-xindra/llcorehttp/httpoptions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcorehttp/httpoptions.cpp b/indra/llcorehttp/httpoptions.cpp
index 2b42bcaf6d..3459a37aff 100755
--- a/indra/llcorehttp/httpoptions.cpp
+++ b/indra/llcorehttp/httpoptions.cpp
@@ -40,7 +40,7 @@ HttpOptions::HttpOptions() : RefCounted(true),
mTransferTimeout(HTTP_REQUEST_XFER_TIMEOUT_DEFAULT),
mRetries(HTTP_RETRY_COUNT_DEFAULT),
mUseRetryAfter(HTTP_USE_RETRY_AFTER_DEFAULT),
- mFollowRedirects(false),
+ mFollowRedirects(true),
mVerifyPeer(false),
mVerifyHost(false),
mDNSCacheTimeout(-1L),