commit 905af288fa976ae799a41d5684e4b534e2e2e24d
Author: Charles Lepple <clepple+nut@gmail.com>
Date:   Sat Jan 11 16:43:19 2014 -0500

    snmp-ups: APC SmartBoost and SmartTrim are OL
    
    SmartBoost and SmartTrim are voltage regulation functions that prevent the UPS
    from using the battery during brownouts and overvoltages, so the BOOST and TRIM
    states are also mapped to OL.
    
    Reference: http://article.gmane.org/gmane.comp.monitoring.nut.devel/6583

diff --git a/drivers/apc-mib.c b/drivers/apc-mib.c
index 8851a6f..b52ad1f 100644
--- a/drivers/apc-mib.c
+++ b/drivers/apc-mib.c
@@ -72,7 +72,7 @@ static info_lkp_t apcc_pwr_info[] = {
     { 1, "" },          /* unknown  */
     { 2, "OL" },        /* onLine */
     { 3, "OB" },        /* onBattery */
-    { 4, "BOOST" },     /* onSmartBoost */
+    { 4, "OL BOOST" },     /* onSmartBoost */
     { 5, "OFF" },       /* timedSleeping */
     { 6, "OFF" },       /* softwareBypass  */
     { 7, "OFF" },       /* off */
@@ -80,7 +80,7 @@ static info_lkp_t apcc_pwr_info[] = {
     { 9, "BYPASS" },    /* switchedBypass */
     { 10, "BYPASS" },   /* hardwareFailureBypass */
     { 11, "OFF" },      /* sleepingUntilPowerReturn */
-    { 12, "TRIM" },     /* onSmartTrim */
+    { 12, "OL TRIM" },     /* onSmartTrim */
     { 0, "NULL" }
 } ;
 
