From 13fe905b24546dda39a88466517aa0c6b449fbd8 Mon Sep 17 00:00:00 2001
From: Oz Linden <oz@lindenlab.com>
Date: Mon, 25 Feb 2013 16:44:31 -0500
Subject: [PATCH] disable willing-to-test for Test viewers

---
 indra/newview/llappviewer.cpp | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index ae593daf08f..6ec6f5489cf 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -2938,7 +2938,17 @@ void LLAppViewer::initUpdater()
 	std::string version = LLVersionInfo::getVersion();
 	std::string service_path = gSavedSettings.getString("UpdaterServicePath");
 	U32 check_period = gSavedSettings.getU32("UpdaterServiceCheckPeriod");
-	bool willing_to_test = gSavedSettings.getBOOL("UpdaterWillingToTest");
+	bool willing_to_test;
+	LL_DEBUGS("UpdaterService") << "channel " << channel << LL_ENDL;
+	if (channel.find("Test") != std::string::npos) // TBD - should be a regex
+	{
+		LL_INFOS("UpdaterService") << "Test build: overriding willing_to_test by sending testno" << LL_ENDL;
+		willing_to_test = false;
+	}
+	else
+	{
+		willing_to_test = gSavedSettings.getBOOL("UpdaterWillingToTest");
+	}
     unsigned char unique_id[MD5HEX_STR_SIZE];
 	if ( ! llHashedUniqueID(unique_id) )
 	{
-- 
GitLab