diff options
author | Logan Dethrow <log@lindenlab.com> | 2011-07-21 15:16:54 -0400 |
---|---|---|
committer | Logan Dethrow <log@lindenlab.com> | 2011-07-21 15:16:54 -0400 |
commit | 859dc52c30a8c750047323399caa4fec18adfb2d (patch) | |
tree | e90169de3ea558d1d856fa1a2417e83141cd7eaf /indra/llmessage/llurlrequest.cpp | |
parent | 0f501293bdf5498369e5b6e4409cfdc758366d9e (diff) |
STORM-1112 Protected LLProxy members during cross-thread calls to LLProxy::applyProxySettings()
Diffstat (limited to 'indra/llmessage/llurlrequest.cpp')
-rw-r--r-- | indra/llmessage/llurlrequest.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/llmessage/llurlrequest.cpp b/indra/llmessage/llurlrequest.cpp index 6fe9dce7d3..528830dc56 100644 --- a/indra/llmessage/llurlrequest.cpp +++ b/indra/llmessage/llurlrequest.cpp @@ -228,8 +228,7 @@ void LLURLRequest::useProxy(bool use_proxy) } } - - lldebugs << "use_proxy = " << (use_proxy?'Y':'N') << ", env_proxy = " << (env_proxy ? env_proxy : "(null)") << llendl; + LL_DEBUGS("Proxy") << "use_proxy = " << (use_proxy?'Y':'N') << ", env_proxy = " << (env_proxy ? env_proxy : "(null)") << LL_ENDL; if (env_proxy && use_proxy) { |