From a761351396d81c4de7598340c61bf9cd4115071f Mon Sep 17 00:00:00 2001
From: Dave Parks <davep@lindenlab.com>
Date: Fri, 11 Feb 2011 19:07:11 -0600
Subject: [PATCH] SH-813 Switch llerrs in llcurl.cpp to an assert.

---
 indra/llmessage/llcurl.cpp | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp
index 2b9bfff5368..b0f68df2e81 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;
-- 
GitLab