diff options
author | Rider Linden <rider@lindenlab.com> | 2015-06-01 16:54:53 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-06-01 16:54:53 -0700 |
commit | 68da6fa846fee1e3c5fb478945ef54f83a86aacd (patch) | |
tree | 6567411b4ba3cdc40c1824cabd5c1d4fa71a039b /indra | |
parent | d41ad508bf10643c3bfeb70dd8f39e187d618a02 (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')
-rwxr-xr-x | indra/llcorehttp/httpoptions.cpp | 2 |
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), |