diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-11-24 09:03:14 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-11-24 09:03:14 -0500 |
commit | fae00f8c794c067f7a6c72032698c9c413be041c (patch) | |
tree | 8dcfc208385476654b15a6a99e0c0af2b11e906e /indra/newview | |
parent | d49d1def45482bccf4600a34bc2fd5693e05d329 (diff) |
SH-564 WIP - scrubbing not needed if curl uses thread-safe c-ares lib
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llmeshrepository.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 1ff11f2c01..2f355520ff 100755 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -110,7 +110,7 @@ U32 get_volume_memory_size(const LLVolume* volume) std::string scrub_host_name(std::string http_url) { //curl loves to abuse the DNS cache, so scrub host names out of urls where trivial to prevent DNS timeouts - +#if 0 if (http_url.empty()) { return http_url; @@ -145,6 +145,7 @@ std::string scrub_host_name(std::string http_url) http_url.replace(idx, host_string.length(), ip_string); } } +#endif return http_url; } |