Index: ipmi-sensors-output-common.c
===================================================================
--- ipmi-sensors-output-common.c	(revision 9745)
+++ ipmi-sensors-output-common.c	(working copy)
@@ -451,12 +451,22 @@
       goto cleanup;
     }
 
-  if (threshold_access_support == IPMI_SDR_NO_THRESHOLDS_SUPPORT
-      || threshold_access_support == IPMI_SDR_FIXED_UNREADABLE_THRESHOLDS_SUPPORT)
-    {
-      rv = 0;
-      goto cleanup;
-    }
+    if ( state_data->oem_data.manufacturer_id == IPMI_IANA_ENTERPRISE_ID_FUJITSU) 
+        {
+          /* FTS, indicate fixed thresholds in SDR with 11b. IPMI Spec. ambiguous if you insist on the 'unreadable' */
+          if (threshold_access_support == IPMI_SDR_NO_THRESHOLDS_SUPPORT )
+            {
+              rv = 0;
+              goto cleanup;
+            }
+        }
+    
+    else if (threshold_access_support == IPMI_SDR_NO_THRESHOLDS_SUPPORT
+            || threshold_access_support == IPMI_SDR_FIXED_UNREADABLE_THRESHOLDS_SUPPORT)
+      {
+        rv = 0;
+        goto cleanup;
+      }
 
   /* achu:
    *
