From 2b71ab6765572794e9926e9976b51eac62c6e8a5 Mon Sep 17 00:00:00 2001 From: Chris Gardner Date: Thu, 30 May 2013 08:51:03 +0100 Subject: [PATCH] Fix typo. Solaris 9 should now correctly ignore 'brand' and use 'implementation'. --- library/system/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/setup b/library/system/setup index 91dc0fff3d..e90452ea47 100644 --- a/library/system/setup +++ b/library/system/setup @@ -665,7 +665,7 @@ class SunOSHardware(Hardware): data = line.split(None, 1) key = data[0].strip() # "brand" works on Solaris 10 & 11. "implementation" for Solaris 9. - if key == 'module': + if key == 'module:': brand = '' elif key == 'brand': brand = data[1].strip()