diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-11-24 10:11:19 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2010-11-24 10:11:19 -0500 |
commit | c6e3a16b52a900d5fdddcd7424116593e67bb16e (patch) | |
tree | 12ca75c2fd5480b5ac744e74289b5347b581d109 /indra/newview | |
parent | 3d83c6501e07a33ad04a6f049dd462089f818fb8 (diff) | |
parent | fae00f8c794c067f7a6c72032698c9c413be041c (diff) |
merge
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; } |