diff options
| author | Dave Parks <davep@lindenlab.com> | 2011-02-11 19:07:11 -0600 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2011-02-11 19:07:11 -0600 | 
| commit | a761351396d81c4de7598340c61bf9cd4115071f (patch) | |
| tree | 63d661146cd8cff2b4b8647e51b03234ac3d6b51 /indra/llmessage | |
| parent | 246b2100e18e6e9e596aacc92a65bd7b6442b0ec (diff) | |
SH-813 Switch llerrs in llcurl.cpp to an assert.
Diffstat (limited to 'indra/llmessage')
| -rw-r--r-- | indra/llmessage/llcurl.cpp | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index 2b9bfff536..b0f68df2e8 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -1199,10 +1199,7 @@ void LLCurl::cleanupClass()  	Easy::sFreeHandles.clear(); -	if (!Easy::sActiveHandles.empty()) -	{ -		llerrs << "CURL easy handles not cleaned up on shutdown!" << llendl; -	} +	llassert(Easy::sActiveHandles.empty());  }  const unsigned int LLCurl::MAX_REDIRECTS = 5; | 
