From ac94b66a08b469b02d4cfe41341beaab0a8443ab Mon Sep 17 00:00:00 2001
From: Oz Linden <oz@lindenlab.com>
Date: Tue, 13 Dec 2011 15:58:34 -0500
Subject: [PATCH] storm-1729: ensure that cpu id has no leading or trailing
 spaces for ease of comparison and formatting

---
 indra/llcommon/llsys.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp
index d781687175e..19075afa688 100644
--- a/indra/llcommon/llsys.cpp
+++ b/indra/llcommon/llsys.cpp
@@ -608,6 +608,7 @@ LLCPUInfo::LLCPUInfo()
 		out << " (" << mCPUMHz << " MHz)";
 	}
 	mCPUString = out.str();
+	LLStringUtil::trim(mCPUString);
 }
 
 bool LLCPUInfo::hasAltivec() const
-- 
GitLab