diff options
Diffstat (limited to 'util/oem_dell.c')
-rw-r--r-- | util/oem_dell.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/oem_dell.c b/util/oem_dell.c index 0389355..c806e94 100644 --- a/util/oem_dell.c +++ b/util/oem_dell.c @@ -132,7 +132,7 @@ char NIC_Selection_Mode_String_12g[] [50] = { "shared with failover all loms" }; -static char * progver = "3.01"; +static char * progver = "3.02"; static char * progname = "idelloem"; static int verbose = 0; static char fdebug = 0; @@ -5445,8 +5445,8 @@ int decode_sensor_dell(uchar *sdr,uchar *reading,char *pstring, int slen) if (stype == 0x02) { /* Discrete Voltage */ /* Dell Discrete Voltage is opposite from normal */ if (evtype == 0x03) { /*oem interpretation */ - if (reading[2] & 0x01) strncpy(pstring,"OK",slen); - else strncpy(pstring,"Exceeded",slen); /*LimitExceeded*/ + if (reading[2] & 0x01) strncpy(pstring,"OK",slen); + else strncpy(pstring,"Exceeded",slen); /*LimitExceeded*/ rv = 0; } } |